body {
    font-family: 'Inter', 'Noto Sans', sans-serif;
}

header {
    border-bottom: 1px solid #e5e7eb;
    background-color: #4e977f; /* Lighter header background */
}

.table-container, .shadow {
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.table th, .table td {
    vertical-align: middle;
}

input[type="number"] {
    width: 80px;
    border-radius: 8px;
}

@container (max-width: 120px) {
    .table-orders-column-120,
    .table-products-column-120,
    .table-pickup-column-120 {
        display: none;
    }
}

@container (max-width: 240px) {
    .table-orders-column-240,
    .table-products-column-240,
    .table-pickup-column-240 {
        display: none;
    }
}

@container (max-width: 360px) {
    .table-orders-column-360,
    .table-products-column-360,
    .table-pickup-column-360 {
        display: none;
    }
}

@container (max-width: 480px) {
    .table-orders-column-480,
    .table-products-column-480 {
        display: none;
    }
}

@container (max-width: 600px) {
    .table-orders-column-600,
    .table-products-column-600 {
        display: none;
    }
}

@media (max-width: 767px) {
    #sidebar {
        width: 80%;
        max-width: 250px;
    }
    main {
        padding-left: 0;
        padding-top: 60px;
    }
    header {
        padding-left: 0;
        padding-right: 1rem;
        height: 60px;
    }
    img[src*="Succulents+online+LOGO_Website-RGB.png"] {
        max-height: 32px;
        padding-left: 1rem;
        padding-right: 0.5rem;
    }
    #sidebar-toggle {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
}

@media (min-width: 768px) {
    #sidebar-toggle {
        display: none;
    }
    main {
        padding-left: 16rem;
    }
    img[src*="Succulents+online+LOGO_Website-RGB.png"] {
        max-height: 40px;
        padding-left: 1rem;
        padding-right: 0.5rem;
    }
    header {
        padding-left: 0;
        padding-right: 1rem;
        height: 64px;
    }
}

.hover\:shadow-md:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#notification-dropdown, #user-dropdown {
    display: none;
}

#notification-dropdown.show, #user-dropdown.show {
    display: block;
}

button, .rounded-lg {
    border-radius: 8px !important;
}