/* Polish Zloty 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;
}

/* Polish Zloty note styling with authentic colors */
.note-500 {
    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-200 {
    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-100 {
    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-50 {
    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-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, #800080, #9932CC);
    border-radius: 8px;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Polish Zloty coin styling */
.coin-5 {
    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-2 {
    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-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;
}

.coin-50gr {
    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-20gr {
    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-10gr {
    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-5gr {
    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-2gr {
    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-1gr {
    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;
}

/* Polish-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-500, .note-200, .note-100, .note-50, .note-20, .note-10 {
        background: #f0f0f0 !important;
        color: #333 !important;
        border: 1px solid #ccc !important;
    }
    
    .coin-5, .coin-2, .coin-1, .coin-50gr, .coin-20gr, .coin-10gr, .coin-5gr, .coin-2gr, .coin-1gr {
        background: #f9f9f9 !important;
        color: #333 !important;
        border: 1px solid #ccc !important;
    }
}
