.app-button-wrapper {
    display: inline-flex;
    align-items: center;
}/* Base Styles */
:root {
    --primary-color: #4a6fa5;
    --secondary-color: #6b8cbb;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --light-text: #777;
    --border-color: #eee;
    --bg-color: #fff;
    --light-bg: #f9f9f9;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--secondary-color);
}

/* Container */
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 2rem;
}

header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.subtitle {
    color: var(--light-text);
    font-size: 1.1rem;
}

/* Menu Items */
.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background-color: var(--bg-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item-image {
    width: 100px; /* Smaller image */
    height: 100px; /* Fixed square height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color);
    margin-left: 1rem;
    flex-shrink: 0;
    border-radius: 4px;
}

.menu-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

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

.menu-item-details {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0; /* Ensures text truncation works */
    position: relative; /* For positioning the image */
}

.menu-item-details h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.description {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Status Indicators */
.status-indicator {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    color: white;
}

.status-ready {
    background-color: var(--success-color);
}

.status-beta {
    background-color: var(--warning-color);
}

.status-alpha {
    background-color: var(--danger-color);
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.app-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
    text-align: center;
    white-space: nowrap;
}

.app-button:hover {
    background-color: var(--secondary-color);
    color: white;
}

.empty-menu {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background-color: var(--bg-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Footer */
footer {
    margin-top: 3rem;
    text-align: center;
    padding: 1rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

footer small {
    display: block;
    margin-top: 0.5rem;
}

/* Media queries for responsive design */
@media screen and (max-width: 768px) {
    .menu-container {
        padding: 1rem;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .button-container {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .app-button {
        margin-right: 10px;
    }
    
    .menu-item-image {
        width: 80px;
        height: 80px;
        margin-top: 0;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-item {
    animation: fadeIn 0.5s ease-out forwards;
}

.menu-item:nth-child(2) { animation-delay: 0.1s; }
.menu-item:nth-child(3) { animation-delay: 0.2s; }
.menu-item:nth-child(4) { animation-delay: 0.3s; }
.menu-item:nth-child(5) { animation-delay: 0.4s; }
.menu-item:nth-child(6) { animation-delay: 0.5s; }
