body {
    font-family: "Inter";
    color: #202020;
}

.bg-black {
    --bs-bg-opacity: 1;
    background-color: rgba(17, 17, 17, 1) !important;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(32, 32, 32, 1) !important;
}

.h2,
h2 {
    font-size: calc(1.365rem + 1.38vw);
}

.apply-btn {
    border-radius: 30px;
}

.form-control.bg-gray-800::placeholder {
    color: #8b8b8b;
    /* Light gray for better contrast on dark background */
    font-size: 1.2rem;
}

.form-control.bg-gray-800:disabled {
    background-color: #343a40 !important;
}

/* Career */
.career-container,
.job-description-container,
.my-application-container,
.create-application-container,
.admin-application-container,
.admin-users-application-container {
    margin: 50px 0px;
    padding: 20px 0px;
}

.career-card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
}

.career-card-btn {
    display: none;
    margin-top: 15px;
    width: fit-content;
}

/* Job Description Page */
.job-description-table {
    box-shadow: 0px 0px 10px #bbb;
}

.job-description-table td,
.job-description-table th {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #ddd;
    overflow-wrap: anywhere;
}

.job-description-table th {
    text-wrap: nowrap;
}

.job-description-container .mobile-padding {
    padding: 3rem;
}

/* My Application Page */
.my-application-table td,
.my-application-table th,
.admin-application-table td,
.admin-application-table th {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #ddd;
}

.admin-users-application-table td,
.admin-users-application-table th {
    padding: 1rem;
    font-size: 1rem;
    color: #ddd;
}

.under-review-class {
    color: #a27900 !important;
    background: rgb(255, 246, 220) !important;
    font-weight: 700;
}

.no-longer-consider-class {
    color: #a31b12 !important;
    background: rgb(255, 239, 238) !important;
    font-weight: 700;
}

.accepted-class {
    color: #217a37 !important;
    background: rgb(235, 255, 240) !important;
    font-weight: 700;
}

.btn-withdraw {
    background-color: #bb2d3b;
    color: white;
}

/* Create Application Page */
.create-application-container .form-group {
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Admin Application Page */
.admin-application-table td,
.admin-application-table th,
.admin-users-application-table td,
.admin-users-application-table th {
    text-align: center;
    vertical-align: middle;
}

/* Admin User Application Page */
.user-application-modal .col-4{
    width: 33.33333333%;
    overflow-wrap: break-word;
}
.user-application-modal .col-8{
    width: 66.66666667%;
    overflow-wrap: break-word;
    margin: auto;
}

@media (min-width: 990px) and (max-width: 1200px) {

    .job-description-table td,
    .job-description-table th {
        padding: 1rem 0.7rem;
    }

    .my-application-table td,
    .my-application-table th {
        padding: 1rem 0.7rem;
    }
}

@media (max-width: 990px) {
    .job-description-container .mobile-padding {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .career-card-title .btn {
        display: none;
    }

    .career-card-btn {
        display: block !important;
    }

    .mobile-order {
        order: 2 !important;
        margin-top: 40px;
    }

    .job-description-table td,
    .job-description-table th {
        padding: 1rem 0.7rem;
    }

    .my-application-table td,
    .my-application-table th {
        padding: 1rem 0.7rem;
    }
}