:root {
    --primary-color: #2eaf7d;
    /* Define the variable */
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #f4f2f3;
    color: black;
    touch-action: manipulation;
}

.green-gradient {
    background-color: #eaf4ec;
}

#main-container {
    max-width: 100dvw;
}

#main-navbar {
    background-color: var(--primary-color);
    color: white !important;
    max-width: 100dvw;
}

#main-navbar .navbar-brand img,
.logo-company {
    height: 90px;
}


.btn {
    font-size: small;
}

.fs-small {
    font-size: small !important;
}

.fs-x-small {
    font-size: x-small !important;
}

label {
    font-size: small !important;
}

.dashboard-app {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-decoration: none;
    background-color: white;
    justify-content: center;
    align-content: center;
    text-align: center;
    padding: 20px;
    width: 200px;
    color: gray;
    transition: all 0.2 ease-in-out;
}

.dashboard-app i {
    font-size: x-large;
}

.dashboard-app span {
    font-size: small;
}

.dashboard-app:hover {
    background-color: var(--primary-color);
    color: white !important;
}

.fs-smaller {
    font-size: xx-small !important;
}

.outstation-form-report-table {
    min-width: 900px !important;

}

.list-table {
    min-width: 300px !important;
}

.list-table #prorate-table{
    min-width: 600px !important;
}

@media (max-width: 1000px) {
    .overflow-table {
         overflow-x: auto;
         width: 100%;
     }
}



.dashboard-title-section {
    font-weight: 700;
    color: var(--primary-color);
}

.bg-white {
    background-color: white !important;
}

.file-upload-btn {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    padding: 20px;
    height: 100%;
    border: 1px solid #979797;
    font-size: medium;
    transition: all 0.3s;
    cursor: pointer;
    border-radius: 5px;
}

.file-upload-btn:hover {
    transform: scale(102%);
}
.img-profile{
    height: 200px;
    width: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: solid white 10px;
}

.cursor-pointer {
    cursor: pointer;
}
