/* Overrides for Currency Game */
:root {
    --primary: #14b8a6; /* Teal */
    --secondary: #f59e0b;
    --bg-gradient: linear-gradient(135deg, #ccfbf1, #99f6e4, #5eead4);
}

.money-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    min-height: 120px;
}

.bill {
    width: 120px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    border: 2px dashed rgba(255,255,255,0.5);
    font-family: 'Outfit', sans-serif;
}

.text-option {
    font-size: 1.5rem !important;
}
