@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

/* --- Keyframe Animations --- */
@keyframes fadeInScaleUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes titleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pop {
    0% { transform: scale(1.5); }
    50% { transform: scale(1.8); }
    100% { transform: scale(1.5); }
}


body {
    font-family: 'Luckiest Guy', cursive;
    background-color: #ffc107;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2), 0 6px 6px rgba(0,0,0,0.2);
    max-width: 500px;
    width: 100%;
    text-align: center;
    border: 5px solid #333;
    animation: fadeInScaleUp 0.5s ease-out forwards;
}

h1 {
    font-size: 3rem;
    color: #d9534f;
    text-shadow: 2px 2px #333;
    margin-bottom: 20px;
    animation: titleBounce 1s ease-in-out infinite;
}

h2 {
    font-size: 2rem;
    color: #5bc0de;
    margin-top: 30px;
}

.meal-options, .toppings {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 20px auto;
    font-size: 1.5rem;
}

label {
    margin-bottom: 10px;
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
}

label:hover {
    transform: scale(1.05);
}

input[type="radio"], input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.5);
    cursor: pointer;
    transition: transform 0.2s ease;
}

input[type="radio"]:checked, input[type="checkbox"]:checked {
    animation: pop 0.3s ease-out;
}


button {
    background-color: #5cb85c;
    color: white;
    padding: 15px 30px;
    border: 3px solid #333;
    border-radius: 10px;
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.2s ease-out;
    margin-top: 20px;
    box-shadow: 0 5px 0 #333;
}

button:hover {
    background-color: #4cae4c;
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #333;
}

button:active {
    transform: translateY(2px);
    box-shadow: 0 3px 0 #333;
}

a {
    color: #5bc0de;
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-block;
    margin-top: 20px;
    transition: transform 0.2s;
}

a:hover {
    text-decoration: underline;
    transform: scale(1.1);
}

input[type="text"] {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.5rem;
    padding: 10px 15px;
    border: 3px solid #333;
    border-radius: 10px;
    background-color: #fff;
    color: #333;
    width: 80%;
    box-sizing: border-box;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

input[type="text"]::placeholder {
    color: #aaa;
}

input[type="text"]:focus {
    outline: none;
    border-color: #5bc0de;
    box-shadow: 0 0 10px rgba(91, 192, 222, 0.5);
}

/* --- Orders Page Specific Styles --- */
.orders-table tr:not(.fulfilled):hover {
    background-color: #f5f5f5;
    transform: scale(1.02);
    transition: all 0.2s ease;
}