.loading-container {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.68);
    inset: 0; /* Shorthand for top: 0; right: 0; bottom: 0; left: 0 */
    z-index: 1;
}

.loading-container img {
    width: 100px;
    height: 100px;
}

.new-request-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: left;
    color: #212529;
}

.new-request-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.1;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-align: left;
    color: #00c7ff;
}

.new-request-description {
    text-align: justify;
    color: #777777;
    font-size: 14px;
    margin-bottom: 0rem;
}

.new-request-list {
    list-style-type: disc;
    text-align: left;
    color: #777777;
    font-size: 14px;
}

.new-request-list a {
    font-size: 0.8rem;
    color: #00c7ff;
    font-weight: 500;
    margin-bottom: 0rem;
    transition: color 0.3s ease-in-out;
}

.new-request-list a:hover {
    color: #00a8d7;
}

.new-request-btn {
    background-color: #00c7ff !important;
    border: 1px solid #00c7ff !important;
    border-radius: 6px !important;
    padding: 0.4rem 3rem !important;
    margin-top: 1rem;
    font-size: 1rem !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    transition: background-color 0.3s ease-in-out;
}

.new-request-btn:active,
.new-request-btn:focus-within,
.new-request-btn:hover {
    background-color: #00a8d7 !important;
    border: 1px solid #00c7ff !important;
}

.new-request-btn:disabled {
    background-color: #00c7ff;
    border: 1px solid #00c7ff;
    cursor: not-allowed;
}

.submit_btn_container {
    display: flex;
    justify-content: flex-end;
}

.request-form h5 {
    margin-bottom: 0;
    color: #00c7ff;
}

.request-form h5:not(:first-of-type) {
    margin-top: 2rem;
}

.request-form .col-md-2,
.request-form .col-md-4,
.request-form .col-md-6,
.request-form .col-md-8,
.request-form .col-md-10,
.request-form .col-md-12 {
    margin-top: 0rem;
    margin-bottom: 1rem;
}

.bootstrap-select>.dropdown-toggle {
    border: var(--bs-border-width) solid var(--bs-border-color);
}

.btn.dropdown-toggle.btn-light {
    background-color: #ffffff;
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 0.5rem;
}

.checkbox-container label:hover {
    cursor: pointer;
}

.company-logo-container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.company-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 5px solid #eeeeee;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.company-logo img {
    width: 100%;
    transition: opacity 0.3s ease-in-out;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease-in-out;
}

.text-logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    display: none;
}

.company-logo:hover .overlay {
    opacity: 1;
}

.company-logo:hover .text-logo {
    display: block;
}
