/* Malaysian Ringgit 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;
}

/* Malaysian Ringgit note styling with authentic colors */
.note-100 {
    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-50 {
    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-20 {
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    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, #4169E1, #6495ED);
    border-radius: 8px;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.note-1 {
    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);
}

/* Malaysian Ringgit coin styling */
.coin-50c {
    background: radial-gradient(circle, #C0C0C0, #A9A9A9);
    border-radius: 50%;
    color: #2F4F4F;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 3px solid #808080;
}

.coin-20c {
    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-10c {
    background: radial-gradient(circle, #C0C0C0, #A9A9A9);
    border-radius: 50%;
    color: #2F4F4F;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 3px solid #808080;
}

.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;
}

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

/* Malaysian-specific styling */
.native-language {
    color: #DC143C;
    font-style: italic;
    margin-bottom: 1rem;
}

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

/* Print styles */
@media print {
    .note-100, .note-50, .note-20, .note-10, .note-5, .note-1 {
        background: #f0f0f0 !important;
        color: #333 !important;
        border: 1px solid #ccc !important;
    }
    
    .coin-50c, .coin-20c, .coin-10c, .coin-5c {
        background: #f9f9f9 !important;
        color: #333 !important;
        border: 1px solid #ccc !important;
    }
}
