/* Roast Generator Specific Styles */

/* Jester sizing */
.jester { font-size: 3rem; text-align: center; margin-bottom: 1rem; }

/* Roast result box with app-specific animation */
.roast-box {
    background: rgba(255,255,255,0.08);
    border: 3px solid #ff6b6b;
    border-radius: 12px;
    padding: 2rem;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-top: 1.5rem;
    transition: all 0.3s;
}

.roast-box.loading {
    color: #888;
    font-style: italic;
}

.roast-box.roasted {
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px) rotate(-1deg); }
    75% { transform: translateX(5px) rotate(1deg); }
}

/* Instructions styling */
.instructions {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255,215,61,0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #aaa;
}
