/* Swedish Krona 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;
}

/* Swedish Krona note styling with authentic colors */
.note-1000 {
    background: linear-gradient(135deg, #4169E1, #1E90FF);
    border-radius: 8px;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.note-500 {
    background: linear-gradient(135deg, #32CD32, #228B22);
    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, #FF6347, #FF4500);
    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, #9932CC, #8B008B);
    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, #FF8C00, #FF7F50);
    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, #DC143C, #B22222);
    border-radius: 8px;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Swedish Krona coin styling */
.coin-10 {
    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-5 {
    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-2 {
    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-1 {
    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;
}

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

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

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

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