﻿/* wwwroot/css/site.css */
.prd-container {
    display: flex;
    height: 100vh;
    width: 100%;
}
.prd-sidebar {
    flex: 0 0 300px;
    padding: 1rem;
    transition: left 0.3s ease-in-out;
}

.prd-main {
    flex: 1;
    padding: 1rem;
}

/* Жижиг дэлгэцийн тохиргоо */
@media (max-width: 992px) {
    .prd-container {
        display: flex;
        flex-direction: column;
        height: auto;
        width: 100%;
/*        background-color: lightgray;*/
    }

    .prd-sidebar {
        position: fixed;
        top: 0;
        left: -250px;
        width: 250px;
        height: 100%;
        background-color: #fff;
        z-index: 1001;
        overflow:auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    }

        .prd-sidebar.active {
            left: 0 !important;
        }

    .prd-menu-toggle {
        display: block !important;
        top: 10px;
        left: 10px;
        border: none;
        padding: 10px;
        font-size: 18px;
        cursor: pointer;
        width: fit-content;
        margin-left: 1rem;
        color: #ffffff;
        background-color: #1A2C79;
    }

   /* .main {
        margin-top: 50px;
    }*/
}

/* Том дэлгэцийн үед меню товчлуур нуух */
.prd-menu-toggle {
    display: none;
}
