@charset "UTF-8";
/* CSS Document */
/* responsive.css */
/* Responsive styles */
@media screen and (max-width: 768px) {
    .main-content {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    .side-menu {
        margin: 1rem;
        flex: none;
    }

    .table-container {
        margin: 0;
        border-radius: 0;
    }

    td, th {
        min-width: 100px;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
    }

    .details-section {
        padding: 1rem;
    }

    .side-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        margin: 0;
        z-index: 1000;
        transition: left 0.3s ease;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .side-menu.active {
        left: 0;
    }

    /* Menu overlay */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .menu-overlay.active {
        display: block;
    }
	
    /* Responsive image styles for mobile */
    .desktop-image {
        display: none;
    }
    .mobile-image {
        display: block;
        width: 100%;
        max-width: 100px;
        height: auto;
        margin: 0 auto;
    }
}

/* Desktop and tablet adjustments */
@media screen and (min-width: 769px) {
    .desktop-image {
        display: block;
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    .mobile-image {
        display: none;
    }
}

/* Additional media queries for mobile-image sizing */
@media (min-width: 768px) {
    .mobile-image {
        width: 10%; /* Half width on tablets and up */
    }
}

@media (min-width: 1024px) {
    .mobile-image {
        width: 10%; /* One-third width on desktop */
    }
}

