
        body {
            background: #fffaf8;
            font-family: "Inter", system-ui, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
        }

        .page-wrapper {
            width: 100%;
            max-width: 95%;
            background: #fffaf8;
            flex: 1;
            display: flex;
            flex-direction: column;
            border-radius: 0;
        }

        /* Header */
        .header-section {
            background: #6b3e26;
            color: #fff;
            border-bottom-left-radius: 1.5rem;
            border-bottom-right-radius: 1.5rem;
            padding: 1rem 1rem 1.2rem;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .header-section img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            margin-bottom: 0.4rem;
            float: left;
        }

        .header-section h1 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }

        .header-section p {
            font-size: 0.9rem;
            color: #f5eae5;
            margin-bottom: 0.5rem;
        }

        .emoji-icons {
            font-size: 1.2rem;
        }

        /* Profile + Add button row */
        .header-actions {
            position: absolute;
            top: 10px;
            right: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .username {
            font-size: 0.9rem;
            font-weight: 500;
            color: #fff;
        }

        .btn-logout,
        .btn-add {
            font-size: 0.8rem;
            padding: 4px 8px;
            border-radius: 8px;
        }

        .btn-add {
            background-color: #6b3e26;
            color: #fff;
            font-weight: 600;
            border: none;
        }

        .btn-add:hover {
            background-color: #9f684aff;
        }

        .custom-shadow {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .custom-shadow:hover {
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
        }

        .btn-logout {
            background-color: #ff5c5c;
            color: #fff;
            border: none;
        }

        .profile-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #fff;
            color: #6b3e26;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1rem;
        }

        /* Category Cards */
        .category-card {
            border-radius: 1rem;
            background: #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }

        @media (min-width: 500px) {
            .hs {
                height: 53px;
            }
        }

        @media (min-width: 400px) {
            .hs {
                height: 63px;
            }
        }

        @media (min-width: 280px) {
            .hs {
                height: 73px;
            }
        }

        @media (max-width: 400px) {
            .fp {
                font-size: 0.7rem;
                padding: 0px 40px 0px;
            }

            .fh {
                font-size: 1.2rem;
                padding: 0px 20px 0px;
            }

            .pd {
                padding: 0px 20px 0px;
            }
        }

        .category-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
        }

        .category-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 10px;
        }

        .category-card h6 {
            font-size: 1rem;
            font-weight: 600;
            color: #4a2d1c;
            margin-bottom: 0;
        }

        .profile-popup {
            position: absolute;
            top: 40px;
            right: 0;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 10px 12px;
            min-width: 150px;
            display: none;
            z-index: 1000;
            animation: slideIn 0.2s ease-in-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-5px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .profile-popup::before {
            content: "";
            position: absolute;
            top: -6px;
            right: 14px;
            width: 10px;
            height: 10px;
            background: #fff;
            border-left: 1px solid #ddd;
            border-top: 1px solid #ddd;
            transform: rotate(45deg);
        }

        .profile-popup p {
            margin: 0;
            color: #4a2d1c;
            text-align: center;
        }


        .category-card[data-border="red"] {
            border-color: #ff6347;
        }

        .category-card[data-border="orange"] {
            border-color: #ff9f1c;
        }

        .category-card[data-border="blue"] {
            border-color: #007bff;
        }

        .category-card[data-border="green"] {
            border-color: #2ecc71;
        }

        .category-card[data-border="pink"] {
            border-color: #e83e8c;
        }

        /* Footer */
        footer {
            background: #6b3e26;
            color: #fff;
            text-align: center;
            padding: 0.8rem;
            font-size: 0.85rem;
            border-top-left-radius: 1rem;
            border-top-right-radius: 1rem;
            margin-top: auto;
        }

        @media (max-width: 768px) {
            .left-panel, .right-panel {
                margin-top: 10px;
            }
        }
