        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f0f2f5;
        }

        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 30px;
            color: #333;
        }

        /* Main container split layout */
        .main-container {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        /* First section (wider section) */
        .section-wide {
            flex: 3;
            background-color: #fff;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
        }

        /* Second section (vertical layout) */
        .section-vertical {
            flex: 1;
            background-color: #fff;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        /* Table box styling */
        .table-box {
            border: none;
            text-decoration: none;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            background-color: #fff;
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            width: 180px;
            height: 140px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #007bff;
            position: relative;
            overflow: hidden;
        }

        /* Highlight styling for tables with new orders */
        .table-box.new-order {
            background-color: #ffeb3b; /* Highlight color */
            color: #333;
            font-weight: bold;
            border: 2px solid #ff9800;
        }

        .table-box:hover {
            transform: scale(1.05);
            background-color: #007bff;
            color: white;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .table-box::before {
            content: '';
            position: absolute;
            width: 300%;
            height: 300%;
            top: 50%;
            left: 50%;
            background: rgba(255, 255, 255, 0.2);
            opacity: 0;
            transition: all 0.6s ease-out;
            transform: translate(-50%, -50%) scale(0);
            border-radius: 50%;
        }

        .table-box:hover::before {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        /* Grid layout for tables */
        .table-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-evenly;
            gap: 20px;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .main-container {
                flex-direction: column;
            }

            h1 {
                font-size: 2.2rem;
            }

            .table-box {
                width: 140px;
                height: 120px;
            }
        }

        @media (max-width: 576px) {
            .table-box {
                width: 120px;
                height: 100px;
            }

            .table-box h3 {
                font-size: 1rem;
            }
        }