/* Euro to NPR Converter - Full CSS */
.euro-to-npr-converter {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
    font-family: 'Arial', sans-serif;
}

.euro-to-npr-converter h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
}

.converter-form {
    display: grid;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-weight: 600;
    color: #34495e;
}

.input-group input {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-color: #3498db;
    outline: none;
}

.rate-type {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.rate-type label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

#eur-convert {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#eur-convert:hover {
    background: #2980b9;
}

.conversion-result {
    margin-top: 20px;
    text-align: center;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

#eur-result {
    font-size: 32px;
    font-weight: bold;
    color: #27ae60;
    margin: 15px 0;
}

.rate-info {
    margin-top: 20px;
    padding: 15px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#eur-rate-display {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 15px;
}

#eur-rate-display strong {
    color: #2980b9;
}

.rate-dates {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #7f8c8d;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
}

#eur-published-date {
    text-align: left;
}

#eur-modified-date {
    text-align: right;
}

/* Responsive Design */
@media (max-width: 480px) {
    .euro-to-npr-converter {
        padding: 20px;
    }

    .rate-dates {
        flex-direction: column;
        text-align: center;
    }

    #eur-published-date,
    #eur-modified-date {
        text-align: center;
        margin: 5px 0;
    }
}