@charset "UTF-8";

/** ---- Forms --------- */

.nice-select .current {
    color: var(--heading-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}

#form-footer button {
    min-width: fit-content;
    white-space: nowrap;
}

#form-footer div {
    width: fit-content;
    margin-left: 10px;
}

#drop-zone {
    border: 2px dashed #30786b;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #555;
    font-size: 18px;
    cursor: pointer;
}

#drop-zone.drag-over {
    border-color: #95be47;
    background-color: rgba(255, 255, 255, 0.07);
}

#file-name {
    margin-top: 5px;
}

/* More specific selectors targeting Bootstrap modal structure */
body #candidateLogin.modal .modal-dialog .modal-content {
    background-color: #1e1e1e;
    color: #ffffff;
    border-radius: 16px;
    border: 1px solid #444;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

body #candidateLogin .modal-header,
body #candidateLogin .modal-footer {
    border: none;
    background-color: transparent;
}

body #candidateLogin .modal-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
}

body #candidateLogin .form-control {
    width: 100%;
    height: auto;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: white;
    font-family: "DM Sans", sans-serif;

    padding: 12px 20px 12px 20px;
    border-radius: 14px;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    background: rgba(255, 255, 255, 0.07);

    box-shadow: none;
    outline: none;
    appearance: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

body #candidateLogin .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* Optional focus style */
body #candidateLogin .form-control:focus {
    border-color: var(--secondary-color, #5d9a5c);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 0.1rem rgba(93, 154, 92, 0.25); /* green glow */
}

body #candidateLogin .theme-btn {
    background-color: #5d9a5c;
    border: none;
    color: white;
    border-radius: 8px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

body #candidateLogin .theme-btn:hover {
    background-color: #4c804c;
}

/* Fit Cultural Styles */

.fit-question-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 20px;
    border-radius: 10px;
    /* background-color: #1e1e1e; */
}

.fit-question-title {
    color: var(--heading-color);
}

.fit-options-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fit-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    line-height: 1.4;
    user-select: none;
}

.fit-option input[type="radio"] {
    display: none;
}

.fit-custom-radio {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #888;
    transition: 0.2s;
    position: relative;
    margin-top: 5px;
}

.fit-option input[type="radio"]:checked + .fit-custom-radio {
    border-color: #4CAF50;
    background-color: #4CAF50;
}

.fit-option input[type="radio"]:checked + .fit-custom-radio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.fit-option-text {
    flex: 1;
    color: var(--base-color);
}

.fit-option input[type="radio"]:disabled ~ .fit-option-text {
    opacity: 0.6;
    cursor: default;
}

.fit-option input[type="radio"]:disabled + .fit-custom-radio {
    border-color: #666;
    background-color: #444;
}

.steps-wrapper {
    width: 380px;
}

.step-indicator {
    text-align: center;
}

.step-indicator i {
    font-size: 26px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.35);
}

.step-indicator span {
    font-size: 16px;
}

.step-indicator.done i {
    color: var(--primary-color);
}