/* file: moka/static/styles.css */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary-color: #5C3D2E;
    --secondary-color: #8B6F4E;
    --accent-color: #C17B5C;
    --caramel: #D4A373;
    --background-color: #FEFAE0;
    --card-background: #ffffff;
    --text-color: #3E2723;
    --text-light: #6D4C41;
    --cream: #FFF8E7;
    --cream-dark: #F5E6C8;
    --danger: #C0392B;
    --shadow-sm: 0 2px 8px rgba(92, 61, 46, 0.08);
    --shadow-md: 0 4px 16px rgba(92, 61, 46, 0.12);
    --shadow-lg: 0 8px 32px rgba(92, 61, 46, 0.16);
    --radius: 12px;
    --radius-sm: 8px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Merriweather', Georgia, serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
}

/* ===== HEADER ===== */
header {
    text-align: center;
    padding: 32px 0 16px;
}

h1 {
    color: var(--primary-color);
    font-size: 2.2em;
    margin: 0;
    font-weight: 700;
}

.subtitle {
    color: var(--secondary-color);
    font-size: 1em;
    margin-top: 4px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ===== MAIN LAYOUT ===== */
main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 16px;
}

@media (min-width: 769px) {
    main {
        display: grid;
        grid-template-columns: 7fr 3fr;
        gap: 30px;
    }
}

/* ===== MENU SECTION ===== */
.menu-section {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.category-title {
    color: var(--primary-color);
    font-size: 1.3em;
    margin: 24px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--caramel);
    font-weight: 700;
}

.category-section:first-child .category-title {
    margin-top: 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    padding: 0;
}

.menu-item {
    background: var(--card-background);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cream-dark);
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.menu-item-content {
    padding: 16px;
}

.menu-item h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.05em;
    font-family: 'Merriweather', Georgia, serif;
}

.description {
    color: var(--text-light);
    font-size: 0.85em;
    margin: 8px 0;
    font-weight: 300;
    line-height: 1.5;
}

.category {
    color: var(--secondary-color);
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 5px 0;
    font-weight: 600;
}

/* ===== BUTTONS ===== */
button {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    font-size: 0.9em;
    font-weight: 600;
    width: 100%;
    margin-top: 10px;
}

button:hover {
    background-color: #4A2E1E;
}

button:active {
    transform: scale(0.97);
}

.add-to-cart {
    background-color: var(--accent-color);
    margin-top: 12px;
    padding: 8px 16px;
    font-size: 0.85em;
}

.add-to-cart:hover {
    background-color: #A8624A;
}

.place-order-btn {
    background-color: var(--primary-color);
    font-weight: 600;
    padding: 12px 20px;
    font-size: 1em;
    letter-spacing: 0.3px;
}

.place-order-btn:hover {
    background-color: #4A2E1E;
}

.place-order-btn:disabled {
    background-color: #B0A090;
    cursor: not-allowed;
    transform: none;
}

/* ===== CART — DESKTOP SIDEBAR ===== */
.cart-section {
    position: sticky;
    top: 20px;
    align-self: start;
}

@media (max-width: 768px) {
    .cart-section {
        display: none;
    }
}

.cart-container {
    background: var(--card-background);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--cream-dark);
}

.cart-container h2 {
    color: var(--primary-color);
    font-size: 1.2em;
    margin: 0 0 12px;
}

.cart-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    max-height: 400px;
    overflow-y: auto;
}

.cart-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--cream-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
}

.cart-list li:last-child {
    border-bottom: none;
}

.empty-cart {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9em;
    text-align: center;
    padding: 20px 0 !important;
}

/* ===== QUANTITY CONTROLS ===== */
.cart-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
}

.cart-item-name {
    flex: 1;
    font-size: 0.9em;
    color: var(--text-color);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--caramel);
    background: var(--cream);
    color: var(--primary-color);
    font-size: 1em;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    margin: 0;
    transition: background-color 0.15s, border-color 0.15s;
    width: auto;
    min-width: 28px;
}

.qty-btn:hover {
    background: var(--caramel);
    color: white;
    border-color: var(--caramel);
}

.qty-count {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9em;
    color: var(--primary-color);
}

.remove-all-btn {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-size: 1.1em;
    cursor: pointer;
    padding: 0;
    margin: 0 0 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s, background-color 0.15s;
}

.remove-all-btn:hover {
    color: var(--danger);
    background: rgba(192, 57, 43, 0.1);
}

/* Legacy remove btn (desktop) */
.remove-btn {
    background: transparent;
    color: var(--text-light);
    border: none;
    padding: 2px 8px;
    margin: 0;
    font-size: 1.2em;
    width: auto;
    min-width: auto;
    cursor: pointer;
}

.remove-btn:hover {
    color: var(--danger);
    background: transparent;
}

/* ===== FLOATING CART BUTTON (MOBILE) ===== */
.floating-cart-btn {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    padding: 0;
    margin: 0;
    transition: transform 0.2s, background-color 0.2s;
}

.floating-cart-btn:hover {
    background: #4A2E1E;
    transform: scale(1.05);
}

.floating-cart-btn:active {
    transform: scale(0.95);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 0.55em;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.cart-badge:empty,
.cart-badge[data-count="0"] {
    display: none;
}

@media (max-width: 768px) {
    .floating-cart-btn {
        display: flex;
    }
}

/* ===== CART BOTTOM SHEET (MOBILE) ===== */
.cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(62, 39, 35, 0.5);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s;
}

.cart-overlay.active {
    display: block;
    opacity: 1;
}

.cart-bottom-sheet {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-background);
    border-radius: 20px 20px 0 0;
    z-index: 1002;
    max-height: 75vh;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 24px rgba(92, 61, 46, 0.2);
    overflow: hidden;
}

.cart-bottom-sheet.active {
    display: block;
    transform: translateY(0);
}

.bottom-sheet-handle {
    width: 40px;
    height: 4px;
    background: var(--cream-dark);
    border-radius: 2px;
    margin: 12px auto 0;
}

.bottom-sheet-content {
    padding: 16px 20px 24px;
    overflow-y: auto;
    max-height: calc(75vh - 20px);
}

.bottom-sheet-content h2 {
    color: var(--primary-color);
    font-size: 1.2em;
    margin: 0 0 12px;
}

@media (min-width: 769px) {
    .cart-overlay,
    .cart-bottom-sheet {
        display: none !important;
    }
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.toast {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 0.9em;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    pointer-events: auto;
    animation: toastIn 0.3s ease-out, toastOut 0.3s ease-in 1.7s forwards;
    font-family: 'Poppins', sans-serif;
}

.toast.toast-success {
    background: #2E7D32;
}

.toast.toast-error {
    background: var(--danger);
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-12px);
    }
}

/* ===== ORDER CONFIRMATION ===== */
.confirmation-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--background-color);
}

.confirmation-card {
    background: var(--card-background);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--cream-dark);
}

.confirmation-checkmark {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #E8F5E9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    animation: checkPop 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.confirmation-checkmark svg {
    width: 36px;
    height: 36px;
    color: #2E7D32;
}

@keyframes checkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.confirmation-card h1 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin: 0 0 4px;
}

.confirmation-card .order-number {
    color: var(--text-light);
    font-size: 0.95em;
    margin: 0 0 4px;
}

.confirmation-card .order-date {
    color: var(--secondary-color);
    font-size: 0.85em;
    margin: 0 0 20px;
}

.confirmation-card .category-group {
    text-align: left;
    margin-bottom: 12px;
}

.confirmation-card .category-group h3 {
    color: var(--primary-color);
    font-size: 0.95em;
    margin: 0 0 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--cream-dark);
}

.confirmation-card .category-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.confirmation-card .category-group li {
    padding: 6px 0;
    color: var(--text-color);
    font-size: 0.9em;
    border-bottom: 1px solid var(--cream);
}

.confirmation-card .category-group li:last-child {
    border-bottom: none;
}

.back-to-menu-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95em;
    margin-top: 20px;
    transition: background-color 0.2s;
}

.back-to-menu-btn:hover {
    background: #4A2E1E;
}

/* ===== LOGIN PAGE ===== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-color);
}

.login-card {
    background: var(--card-background);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--cream-dark);
}

.login-icon {
    font-size: 2.5em;
    margin-bottom: 8px;
}

.login-card h1 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin: 0 0 4px;
}

.login-card p {
    color: var(--text-light);
    font-size: 0.95em;
    margin: 0 0 24px;
}

.login-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1em;
    transition: background-color 0.2s;
    width: auto;
}

.login-btn:hover {
    background: #4A2E1E;
}

/* ===== ADMIN STYLES ===== */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-header h1 {
    font-size: 1.6em;
}

.logout-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85em;
    transition: background-color 0.2s;
}

.logout-btn:hover {
    background-color: #A8624A;
}

.admin-login {
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    background: var(--card-background);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.admin-content {
    background: var(--card-background);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--cream-dark);
}

.add-item form {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.add-item input,
.add-item select {
    padding: 10px 12px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-size: 0.95em;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s;
}

.add-item input:focus,
.add-item select:focus {
    outline: none;
    border-color: var(--caramel);
}

.delete-btn {
    background-color: var(--danger);
    margin-top: 10px;
    font-size: 0.85em;
}

.delete-btn:hover {
    background-color: #A93226;
}

.menu-item.out-of-stock {
    opacity: 0.6;
}

.item-category {
    font-size: 0.75em;
    color: var(--text-secondary);
    margin: 2px 0 8px;
}

.error {
    color: var(--danger);
    text-align: center;
    margin-bottom: 15px;
}

/* ===== LOADING SPINNER ===== */
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== HAMBURGER NAV ===== */
.hamburger-btn {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    box-shadow: var(--shadow-md);
    transition: background-color 0.2s;
}

.hamburger-btn:hover {
    background: #4A2E1E;
}

.hamburger-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.55em;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.admin-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(62, 39, 35, 0.5);
    z-index: 1200;
    opacity: 0;
    transition: opacity 0.3s;
}

.admin-nav-overlay.active {
    display: block;
    opacity: 1;
}

.admin-nav-sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--card-background);
    z-index: 1300;
    box-shadow: -4px 0 24px rgba(92, 61, 46, 0.2);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.admin-nav-sidebar.active {
    right: 0;
}

.admin-nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: transparent;
    color: var(--text-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    transition: color 0.2s, background-color 0.2s;
}

.admin-nav-close:hover {
    color: var(--primary-color);
    background: var(--cream);
}

.admin-nav-links {
    display: flex;
    flex-direction: column;
    padding: 72px 24px 24px;
    gap: 4px;
}

.admin-nav-links a {
    display: block;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background-color 0.15s, color 0.15s;
}

.admin-nav-links a:hover {
    background: var(--cream);
    color: var(--primary-color);
}

/* ===== USER MANAGEMENT ===== */
.user-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.user-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    border: 1px solid var(--cream-dark);
    gap: 16px;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.user-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95em;
}

.user-email {
    color: var(--text-light);
    font-size: 0.85em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-date {
    color: var(--secondary-color);
    font-size: 0.8em;
}

.user-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.admin-badge {
    display: inline-block;
    background: var(--caramel);
    color: white;
    font-size: 0.7em;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.approve-btn {
    background: #2E7D32;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85em;
    cursor: pointer;
    transition: background-color 0.2s;
    width: auto;
    margin: 0;
    flex-shrink: 0;
}

.approve-btn:hover {
    background: #1B5E20;
}

.deactivate-btn {
    background: var(--danger);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85em;
    cursor: pointer;
    transition: background-color 0.2s;
    width: auto;
    margin: 0;
    flex-shrink: 0;
}

.deactivate-btn:hover {
    background: #A93226;
}

.whitelist-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.whitelist-form input[type="email"] {
    flex: 1;
    padding: 10px 12px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-size: 0.95em;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s;
}

.whitelist-form input[type="email"]:focus {
    outline: none;
    border-color: var(--caramel);
}

.whitelist-form .approve-btn {
    margin: 0;
    white-space: nowrap;
}

.empty-message {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9em;
    padding: 12px 0;
}

.user-section h2 {
    color: var(--primary-color);
    font-size: 1.2em;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--caramel);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        padding: 12px;
    }

    header {
        padding: 20px 0 8px;
    }

    h1 {
        font-size: 1.8em;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }

    .menu-item-content {
        padding: 12px;
    }

    /* Extra bottom padding so floating button doesn't cover content */
    main {
        padding-bottom: 80px;
    }
}

/* ===== EASTER EGG PRINT FORM ===== */

.egg-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
}

.egg-form label {
    font-weight: 600;
    font-size: 0.9em;
    color: var(--text-secondary);
}

.egg-upload {
    position: relative;
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.egg-upload:hover,
.egg-upload.dragover {
    border-color: var(--accent-color);
    background: rgba(192, 132, 72, 0.05);
}

.egg-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.egg-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.egg-upload-label small {
    font-size: 0.75em;
    opacity: 0.7;
}

.egg-preview {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    cursor: pointer;
}

.egg-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 8px;
}

.egg-error {
    background: #fde8e8;
    color: #c53030;
}

.egg-success {
    background: #e6f7e6;
    color: #276727;
}
