
    body{
        background-color: #f5f5f5;

    }
    
   .main-content {
            max-width: 100%;
            margin: 0 auto;
        }

        /* Header Section */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .header h1 {
            font-size: 24px;
            color: #0077cc;
        }

        .header-buttons {
            display: flex;
            gap: 10px;
        }

        .addprod_btn {
            background-color: #0077cc;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        /* .addprod_btn:hover {
            background-color: #005faa;
        } */
        .addprod_btn::before {
            content: "+";
            font-size: 18px;
        }
        .addprod_btn.clicked {
            animation: click-effect 0.2s ease-out;
        }
        
        @keyframes click-effect {
            0% { transform: scale(1); }
            50% { transform: scale(0.9); }
            100% { transform: scale(1); }
        }
        /* Filters Section */
        .filters {
            margin-bottom: 20px;
        }

        .filters h2 {
            font-size: 18px;
            margin-bottom: 15px;
        }

        .filter-controls {
            display: flex;
            gap: 20px;
            align-items: center;
            margin-bottom: 15px;
        }

        .filter-controls input[type="text"] {
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            width: 250px;
        }

        .filter-controls select {
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            width: 200px;
        }

        /* Toggle Switch */
        .switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            border-radius: 24px;
            transition: .4s;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            border-radius: 50%;
            transition: .4s;
        }

        input:checked + .slider {
            background-color: #0077cc;
        }

        input:checked + .slider:before {
            transform: translateX(26px);
        }

        .filter-buttons {
            display: flex;
            gap: 10px;
        }

        .addprod_btn-reset {
            background-color: white;
            color: #0077cc;
            border: 1px solid #0077cc;
        }

        /* Table Styles */
        table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        th {
            background-color: #0077cc;
            color: white;
            padding: 12px 16px;
            text-align: left;
            font-weight: 500;
        }

        td {
            padding: 12px 16px;
            border-bottom: 1px solid #eee;
        }

        .action-menu {
            cursor: pointer;
            text-align: center;
            color: #666;
            font-weight: bold;
        }

        .status-cell {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .status-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #4CAF50;
        }

        .status-indicator.out {
            background-color: #f44336;
        }

/*========== RESPONSIVE SELLER INVENTORY ==========*/
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .header h1 {
    font-size: 20px;
  }
  .filter-controls {
    flex-wrap: wrap;
  }
  .filter-controls input[type="text"],
  .filter-controls select {
    width: 100%;
  }
  table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .header-buttons {
    width: 100%;
  }
  .addprod_btn {
    width: 100%;
    justify-content: center;
  }
  .filter-buttons {
    width: 100%;
  }
  .filter-buttons .addprod_btn-reset {
    flex: 1;
  }
}

