.profile-img{
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: contain;
}

.profile-email{
    font-size: x-small;
}

input:disabled, 
textarea:disabled, 
select:disabled, 
button:disabled {
    background-color: var(--light) !important;
    color: var(--mid-main) !important;
    border: none !important; 
}

.file-box {
    width: 6rem;
    height: 5rem;
    padding: 1rem;
    background-color: var(--light);
    color: var(--main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    margin: 10px;
    font-size: x-small;
    transition: background-color 0.3s ease, color 0.3s ease; 
}

.file-box:hover {
    color: var(--light);
    background-color: var(--main);
}


.bi-file-zip{
    font-size: large;
}

/* Smooth transition for visibility */
#companyInfo, #activeTenders {
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

#companyInfo.d-block, #activeTenders.d-block {
    opacity: 1;
    visibility: visible;
}

.btn {
    transition: background-color 0.3s ease, color 0.3s ease;
}
