@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}
/* Universal Items */

.navbar-brand img {
    filter: brightness(0) invert(1);
}

.navbar {
    transition: all .1s ease-out;
}
.navbar.scrolled {
    background: #222222!important;
}
.hero {
    background-size: cover;
    padding: 60px 0;
}

.offset {

    transform: translate(0, -50%);
}



.button {
    display: inline-block;
    padding: 8px 32px;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.button-branded {
    background: #3498db;
    color: #ffffff;
}

/* Sizing Styling */
.h100vh {
    height: 100vh;
}
.disclaimer {
    font-size: 12px;
}



/* Login.php Styling */

#login-form input, #login-form input:focus{
    border-top:0;
    border-left:0;
    border-right:0;
    border-bottom: solid 1px #222222;
    padding: 8px;
    font-size: 16px;
    outline: none;
}
#login-form * {
    transition: all 0.2s ease;
}

#access-code {
    text-transform:uppercase;
}

.message-box {
    background: #FAFAFA;
    color: #444444;
    font-size: 14px;
    padding: 16px;
    border-radius: 4px;
}

.clicklane-gradient {
    background-image: linear-gradient(to right top, #051937, #15355d, #235385, #2d75af, #3498db);
}


/* Styling for Homepage */
.team-member i.bi {
    font-size: 120px;
}


/* Styling for Training docs */

.chapters-bar .chapter a {
    text-decoration: none;
}
.chapters-bar .chapter.active a {
    text-decoration:none!important;
    cursor:default;
    color: #222222!important;
    font-weight: bold!important;
    
}
.chapters-bar .chapter.active {
    border-left: solid 4px #3498db;
    padding-left: 8px;
}

.chapters-bar a:visited {
    color: #777777;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (divide height by width) */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Quiz Styling */

 #quiz-form .partner input,  #quiz-form .partner input:focus{
    border-top:0;
    border-left:0;
    border-right:0;
    border-bottom: solid 1px #222222;
    padding: 8px;
    font-size: 16px;
    outline: none;
    background:none;
    width: 100%;
}
#quiz-form * {
    transition: all 0.2s ease;
}

#quiz-form .form-select {
    background: none;
    border-top:0;
    border-left:0;
    border-right:0;
    border-bottom: solid 1px #222222;
    padding: 8px;
    font-size: 16px;
    outline: none;
    border-radius: 0;
}

.quiz-list {
    list-style: none;
    padding-left: 0;
    width:  100%;
}

.quiz-list > li  {
    border-bottom: solid 1px #f9f9f9;
    padding: 8px;
}
.quiz-list > li:hover {
    background: #f9f9f9;
}

.quiz-list > li > a {
    text-decoration: none;
    font-size: 14px;
    color:  #222222;
}

#quiz-container .question {
    
}
#quiz-container .question h3 {
    font-size: 16px;
    font-weight: 600;
}

.status {
    padding: 4px;
    border-radius: 4px;
}

.status.Approved {
    background: #198754;
    color:#ffffff;
}

.status.Declined {
    background: #dc3545;
    color: #ffffff;
}

.click-to-copy {
    cursor: pointer;
    color: #007BFF; /* Bootstrap's primary blue for example */
    transition: color 0.3s;
}

.click-to-copy:hover {
    color: #0056b3; /* Darker blue on hover */
}

#quizList {
    list-style:none;
    
}

#quizList li a {
    text-decoration:none;
    color: #222222;
}

#quizList li.status.Declined {
    background: rgb(220, 53, 69)!important;
}
#quizList li.status.Declined a, #quizList li.status.Approved a {
    color: #ffffff;
}
#quizList li.status.Approved  {
    background: rgb(25, 135, 84)!important;
}