﻿
/* for mud date picker icon color*/
.mud-picker .mud-icon-button {
    color: #2B2B2B !important;
}

.centerX {
    display: flex;
    align-items: center; /* vertical centering */
    justify-content: center; /* horizontal centering */
    text-align: center; /* center text inside */
    gap: 0.5rem; /* optional spacing between inline children */
    width: 100%; /* ensure it can fill its parent */
    box-sizing: border-box;
}


.desktop-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-layout {
    display: none;
}

@media (max-width: 959px) {
    .desktop-layout {
        display: none !important;
    }

    .mobile-layout {
        display: block !important;
    }
}

#Gridcss {
    /* font-family: Arial, Helvetica, sans-serif; */
    border-collapse: collapse;
    width: 100%;
}

    #Gridcss td, #Gridcss th {
        border: 1px solid #ddd;
        padding: 8px;
    }

    #Gridcss tr:nth-child(even) {
        background-color: #FAFAFA;
    }

    #Gridcss tr:hover {
        background-color: #E0E0E0;
    }

    #Gridcss th {
        padding-top: 12px;
        padding-bottom: 12px;
        text-align: center;
        background-color: #04945f;
        color: white;
    }
