/* Main styles for the Hiring System */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.jumbotron {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.card {
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
    padding: 15px 20px;
}

.card-body {
    padding: 25px;
}

.bg-primary {
    background-color: #003366 !important;
}

.btn-primary {
    background-color: #003366;
    border-color: #003366;
}

.btn-primary:hover {
    background-color: #002244;
    border-color: #001833;
}

.progress {
    height: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.form-check {
    margin-bottom: 10px;
}

.video-container {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 15px;
    border: 1px solid #dee2e6;
}

#webcam, #preview {
    border-radius: 5px;
    max-height: 400px;
    width: 100%;
}

.footer {
    margin-top: 50px;
    padding: 20px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* Custom styling for the test questions */
.question-container {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 5px solid #003366;
}

.options-container .form-check {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.options-container .form-check:hover {
    background-color: #f0f0f0;
    transform: translateX(5px);
}

/* HR Dashboard styles */
.table th, .table td {
    vertical-align: middle;
}

.badge {
    font-size: 85%;
    padding: 0.5em 0.8em;
}

/* Responsive video */
.embed-responsive {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Custom tabs styling */
.nav-tabs .nav-link {
    font-weight: 500;
    padding: 10px 20px;
}

.nav-tabs .nav-link.active {
    background-color: #f8f9fa;
    border-color: #dee2e6 #dee2e6 #f8f9fa;
}



.navbar-brand {
    display: flex;
    align-items: center;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1.3rem;
}

.white-logo {
    height: 50px;
    margin-right: 15px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}

@media (max-width: 767.98px) {
    .white-logo {
        height: 30px;
    }
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #ffffff;
}
