* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    /* background: #000000;
    margin: 0;
    padding: 15px;
    min-height: 100vh;
    line-height: 1.4;
    color: #ffc107; */
}

.main-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 20px;
    background: #1a1a1a;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    overflow: visible;
    min-height: 500px;
    border: 1px solid #333333;
    position: relative;
}

.content {
    flex: 2;
    padding: 25px;
    margin-right: 370px;
}

.mobile-toggle-btn {
    display: none; /* Hidden on desktop */
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #000000;
    border: none;
    padding: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.mobile-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.5);
}

.toggle-text {
    font-size: 9px;
    line-height: 1;
    text-align: center;
    max-width: 50px;
}

.toggle-icon {
    transition: transform 0.3s ease;
    font-size: 14px;
    line-height: 1;
}

.mobile-toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

.mobile-close-btn {
    display: none; /* Hidden on desktop */
    position: absolute;
    top: 5px;
    right: 15px;
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1003;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.mobile-close-btn:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: scale(1.1);
}

.close-icon {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.download-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #ffb300 0%, #ffa000 100%);
}

.download-btn:active {
    transform: translateY(0);
}

.download-icon {
    font-size: 16px;
}

/* User Details Modal */
.modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border: 1px solid #333333;
    animation: modalSlideIn 0.3s ease;
    position: relative;
}

@keyframes modalSlideIn {
    from { 
        transform: translateY(-20px) scale(0.95);
        opacity: 0;
    }
    to { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-content h3 {
    color: #ffc107;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-content p {
    color: #cccccc;
    text-align: center;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ffc107;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid #333333;
    border-radius: 8px;
    color: #ffc107;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #ffc107;
    background: rgba(255, 193, 7, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.form-group input::placeholder {
    color: #666666;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    justify-content: center;
}

.btn-cancel, .btn-download {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-cancel {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid #333333;
}

.btn-cancel:hover {
    background: rgba(255, 193, 7, 0.15);
    transform: translateY(-1px);
}

.btn-download {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    background: linear-gradient(135deg, #ffb300 0%, #ffa000 100%);
}

.side-panel {
    flex: 1;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 20px;
    border-left: 1px solid #333333;
    min-height: calc(100vh - 50px);
    position: fixed;
    top: 25px;
    right: 25px;
    width: 350px;
    max-width: 350px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
    max-height: calc(100vh - 50px);
    transition: transform 0.3s ease;
}

h1 {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    color: #ffc107;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

h3 {
    color: #e6e6e6;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
}

#package-selection {
    margin-bottom: 20px;
}

select {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    border: 2px solid #333333;
    border-radius: 10px;
    background: #1a1a1a;
    color: #ffc107;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffc107' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

select:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.category {
    margin-bottom: 35px;
    padding: 25px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 12px;
    border: 1px solid #333333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.category-header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    z-index: 10;
    padding: 10px;
    border-radius: 8px;
    margin: 0 -10px 10px -10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.category-note {
    color: #cccccc;
    font-size: 14px;
    font-style: italic;
    margin: 0 0 20px 0;
    padding: 8px 12px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 6px;
    border-left: 3px solid #ffc107;
}

.category h3,
.category-title {
    margin: 0 0 10px 0;
    color: #ffc107;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.subcategory {
    margin: 20px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid #333333;
}

.subcategory-title {
    margin: 0 0 15px 0;
    color: #ffb300;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    position: sticky;
    top: 58px;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9;
    padding: 8px;
    border-radius: 6px;
    margin: -8px -8px 15px -8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.subcategory-note {
    color: #cccccc;
    font-size: 13px;
    font-style: italic;
    margin-bottom: 15px;
    padding: 6px 10px;
    background: rgba(148, 163, 184, 0.08);
    border-radius: 5px;
    border-left: 2px solid #ffb300;
}

.limit-info {
    font-size: 12px;
    color: #ffc107;
    font-weight: 500;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.non-selectable-items {
    background: rgba(71, 85, 105, 0.3);
    border-radius: 8px;
    padding: 15px;
    border: 1px dashed #888888;
}

.non-selectable-item {
    color: #cccccc;
    font-size: 14px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.non-selectable-item:last-child {
    border-bottom: none;
}

.category-title {
    flex: 1;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.menu-item {
    background: #1e293b;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: #ffc107;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.item-image {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.item-text {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.item-name {
    flex: 1;
    text-align: center;
}

.description-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 193, 7, 0.3);
    flex-shrink: 0;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.description-icon:hover {
    background: rgba(255, 193, 7, 0.3);
    transform: scale(1.1);
    border-color: #ffc107;
}

.description-icon:active {
    transform: scale(0.95);
    background: rgba(255, 193, 7, 0.4);
}

/* Description Modal Styles */
.description-modal-content {
    max-width: 500px;
    width: 90%;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.modal-header h3 {
    margin: 0;
    color: #ffc107;
    font-size: 1.2rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    transform: scale(1.1);
}

.close-btn:active {
    transform: scale(0.9);
}

.close-icon {
    line-height: 1;
}

.modal-body {
    color: #e2e8f0;
    line-height: 1.5;
    font-size: 14px;
}

.modal-body p {
    margin: 0;
}

.dietary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.dietary-tag {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 500;
    text-transform: capitalize;
    white-space: nowrap;
}

.dietary-tag.vegetarian {
    background: #22c55e;
    color: white;
}

.dietary-tag.vegan {
    background: #16a34a;
    color: white;
}

.dietary-tag.nonvegetarian {
    background: #ef4444;
    color: white;
}

.dietary-tag.seafood {
    background: #0ea5e9;
    color: white;
}

.menu-item:hover {
    background: #0f172a;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.menu-item:hover .item-image {
    transform: scale(1.05);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item input[type="checkbox"] {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 14px;
    height: 14px;
    accent-color: #ffc107;
    cursor: pointer;
    z-index: 2;
}

.menu-item.selected {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #ffffff;
    border-color: #ffc107;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.4);
}

.menu-item.selected .item-image {
    border: 2px solid #ffffff;
}

.menu-item.disabled {
    background: #0f172a;
    color: #888888;
    cursor: not-allowed;
    opacity: 0.5;
    transform: none;
    box-shadow: none;
}

.menu-item.disabled .item-image {
    opacity: 0.3;
    filter: grayscale(100%);
}

.menu-item.disabled:hover {
    background: #0f172a;
    color: #888888;
    transform: none;
    box-shadow: none;
}

.menu-item.disabled input[type="checkbox"] {
    cursor: not-allowed;
    opacity: 0.5;
}

button {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    width: 100%;
    box-shadow: 0 3px 10px rgba(96, 165, 250, 0.3);
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.4);
}

button:active {
    transform: translateY(0);
}

.side-panel h3 {
    margin-top: 0;
    color: #ffc107;
    border-bottom: 3px solid #ffc107;
    padding-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 700;
}

.no-selection {
    color: #e6e6e6;
    font-style: italic;
    text-align: center;
    padding: 20px 12px;
    background: #1e293b;
    border-radius: 8px;
    border: 2px dashed #333333;
    font-size: 14px;
}

.selection-category {
    margin-bottom: 15px;
    background: #1e293b;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #334155;
}

.selection-category h4 {
    margin: 0 0 8px 0;
    color: #ffc107;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-header-with-counts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.category-header-with-counts h4 {
    margin: 0;
    color: #ffc107;
    font-size: 0.9rem;
    font-weight: 600;
}

.item-counts {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 500;
}

.selected-count {
    color: #10b981;
    font-weight: 600;
}

.count-separator {
    color: #64748b;
    margin: 0 4px;
}

.limit-count {
    color: #ffc107;
    font-weight: 600;
}

.selection-items {
    background: #1e293b;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #333333;
}

.selected-list {
    margin: 0;
    padding-left: 15px;
    list-style-type: none;
    position: relative;
}

.selected-list li {
    margin: 4px 0;
    color: #ffc107;
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
    font-weight: 500;
    font-size: 13px;
}

.selected-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
    font-size: 11px;
}

.empty {
    color: #e6e6e6;
    font-style: italic;
    text-align: center;
    padding: 10px;
    font-size: 13px;
}

/* Selection Progress Styles */
.selection-progress {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-title {
    color: #ffc107;
    font-weight: 600;
    font-size: 14px;
}

.progress-percentage {
    color: #ffc107;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.progress-bar {
    background: #333333;
    border-radius: 8px;
    height: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid #4b5563;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-fill {
    background: linear-gradient(90deg, #ffc107 0%, #ffc107 50%, #ffc107 100%);
    height: 100%;
    border-radius: 8px;
    transition: width 0.5s ease;
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-details {
    text-align: center;
}

.progress-text {
    color: #cccccc;
    font-size: 12px;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.progress-note {
    color: #888888;
    font-size: 10px;
    font-style: italic;
}

.package-info {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: white;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(96, 165, 250, 0.3);
}

.package-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

#summary {
    background: linear-gradient(135deg, #ffc107, #ffc107);
    color: white;
    padding: 16px;
    border-radius: 10px;
    margin-top: 16px;
    box-shadow: 0 4px 15px rgba(52, 211, 153, 0.3);
}

#summary h2 {
    color: white;
    margin-top: 0;
    font-size: 1.1rem;
}

#summary h2 {
    color: white;
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .side-panel {
        width: 300px;
        max-width: 300px;
    }
    
    .content {
        margin-right: 320px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }
    
    .main-container {
        flex-direction: column;
        margin: 10px;
        border-radius: 12px;
    }
    
    .content {
        padding: 10px;
        margin-right: 0;
    }
    
    .mobile-toggle-btn {
        display: flex !important;
    }
    
    .mobile-close-btn {
        display: flex !important;
    }
    
    .side-panel {
        position: fixed;
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        height: 60vh;
        max-height: 60vh;
        border-left: none;
        border-top: 1px solid #333333;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        transition: transform 0.3s ease;
        z-index: 9999;
    }
    
    .side-panel.mobile-open {
        transform: translateY(0);
    }
    
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    h1 {
        font-size: 1.4rem;
    }
    
    .menu-items {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    
    .menu-item {
        padding: 5px;
        font-size: 12px;
    }
    
    .item-image {
        height: 60px;
        margin-bottom: 6px;
    }
    
    .item-text {
        font-size: 11px;
        line-height: 1.1;
        margin-bottom: 4px;
        gap: 4px;
    }
    
    .description-icon {
        width: 14px;
        height: 14px;
        font-size: 10px;
    }
    
    .description-modal-content {
        width: 95%;
        max-width: none;
        margin: 20px;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .modal-body {
        font-size: 13px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .dietary-tags {
        gap: 2px;
    }
    
    .dietary-tag {
        font-size: 8px;
        padding: 1px 4px;
    }
    
    .category {
        padding: 5px;
    }
    
    .subcategory {
        padding: 5px;
    }
    
    .category-header {
        top: 0;
        margin: -5px -5px 5px -5px;
        padding: 5px;
    }
    
    .subcategory-title {
        top: 45px;
        margin: -5px -5px 10px -5px;
        padding: 5px;
    }
}
h1 {
    color: #333;
}
h2 {
    color: #555;
}
select, button {
    padding: 8px;
    margin: 10px 0;
    font-size: 16px;
}
.menu-item {
    background: #0f172a;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}
.menu-item.selected {
    background: #082d3c;
    border: 2px solid #007bff;
}
#summary {
    margin-top: 30px;
    background: #e6ffe6;
    padding: 20px;
    border-radius: 6px;
}

h1 {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    color: #e2e8f0;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

h3 {
    color: #ffc107;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
}
