﻿/* AppBar CSS*/

#MainLayout .my-appbar {
    padding: 0 16px;
    background-color: red;
    display: flex;
    justify-content: space-between;
    color: white;
    z-index: 1100;
}

#MainLayout .appbar-title {
    margin-top: 5%;
}

#MainLayout .icons {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    right: 0;
}

/* Drawer */

#MainLayout .full-height {
    height: 100vh !important;
    overflow: hidden
}

#MainLayout .container {
    background: #f8f8ff;
    border-radius: 0
}

#MainLayout .full-list {
    width: 100%;
    border: 0;
    margin: 0;
    padding: 0
}

#MainLayout .mud-list-item:hover {
    background-color: red;
    color: white;
    width: 100%;
}

#MainLayout .mud-navmenu .mud-list-item.mud-selected {
    background-color: red !important;
    color: white !important;
    width: 100%;
}

#MainLayout .small-image {
    width: 100px;
    height: auto;
}

#MainLayout .footer-bg {
    background-color: rgba(0, 0, 0, 0.1);
    margin-bottom: 30%
}

/*Dashboard*/

#DashBoard .sum_card_heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    padding: 16px;
}

#DashBoard .chart_heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    padding: 5px;
}

#DashBoard .pa_heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
}

#DashBoard .sum_card_content {
    font-size: 1rem;
    color: #555;
    padding: 8px 16px;
    border-bottom: 1px solid #f0f0f0;
}

#DashBoard .btn_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#DashBoard .chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#DashBoard .chart-wrapper {
    display: flex;
    justify-content: center;
}

#DashBoard .custom-button {
    padding: 12px 24px;
    font-size: .8rem;
    width: 100%;
    text-align: center;
}

#DashBoard .Card_Heading {
    text-align: center;
    font-size: 1.2rem;
    text-decoration: underline;
}

#DashBoard .small-table {
    font-size: 0.90rem;
    padding: 7px;
}

    #DashBoard .small-table th, .small-table td {
        padding: 7px 8px;
    }

.menu-scrollable {
    max-height: 200px; /* Adjust based on need */
    overflow-y: auto;
}
.footer-bg {
    background-color: #f5f5f5;
    color: #333;
    bottom: 0;
    width: 100%;
}
.highlight {
    animation: pulse-highlight 1s infinite;
    border: 2px solid red;
}

@keyframes pulse-highlight {
    0% {
        box-shadow: 0 0 10px red;
    }

    100% {
        box-shadow: 0 0 5px red;
    }
}
@media (max-width: 600px) {
    .mobile-card {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem;
        background-color: #f9f9f9;
        border: 1px solid #ddd;
        border-radius: 6px;
    }

        .mobile-card div {
            word-wrap: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }
}
