/* Euro specific styles */

/* Input field styling */
.input-fields-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.date-field, .user-field {
    display: flex;
    flex-direction: column;
}

.date-field label, .user-field label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.date-input, .user-input {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

/* Euro note styling with authentic colors */
.note-500 {
    background: linear-gradient(135deg, #800080, #9932CC);
    border-radius: 8px;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.note-200 {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 8px;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.note-100 {
    background: linear-gradient(135deg, #228B22, #32CD32);
    border-radius: 8px;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.note-50 {
    background: linear-gradient(135deg, #FF4500, #FF6347);
    border-radius: 8px;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.note-20 {
    background: linear-gradient(135deg, #4169E1, #6495ED);
    border-radius: 8px;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.note-10 {
    background: linear-gradient(135deg, #DC143C, #FF1493);
    border-radius: 8px;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.note-5 {
    background: linear-gradient(135deg, #708090, #778899);
    border-radius: 8px;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Euro coin styling */
.coin-2 {
    background: radial-gradient(circle, #FFD700, #FFA500);
    border-radius: 50%;
    color: #8B4513;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 3px solid #B8860B;
}

.coin-1 {
    background: radial-gradient(circle, #FFD700, #DAA520);
    border-radius: 50%;
    color: #8B4513;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 3px solid #B8860B;
}

.coin-50c {
    background: radial-gradient(circle, #FFD700, #FFA500);
    border-radius: 50%;
    color: #8B4513;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 3px solid #B8860B;
}

.coin-20c {
    background: radial-gradient(circle, #FFD700, #DAA520);
    border-radius: 50%;
    color: #8B4513;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 3px solid #B8860B;
}

.coin-10c {
    background: radial-gradient(circle, #FFD700, #FFA500);
    border-radius: 50%;
    color: #8B4513;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 3px solid #B8860B;
}

.coin-5c {
    background: radial-gradient(circle, #CD7F32, #A0522D);
    border-radius: 50%;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 3px solid #8B4513;
}

.coin-2c {
    background: radial-gradient(circle, #CD7F32, #A0522D);
    border-radius: 50%;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 3px solid #8B4513;
}

.coin-1c {
    background: radial-gradient(circle, #CD7F32, #A0522D);
    border-radius: 50%;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 3px solid #8B4513;
}

.note-symbol, .coin-symbol {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Responsive design */
@media (max-width: 768px) {
    .input-fields-container {
        grid-template-columns: 1fr;
    }
}
