/*
Theme Name: GeneratePress Child
Description: GeneratePress Child Theme - USD/HUF Exchange Rate Hero
Author: Your Name
Template: generatepress
Version: 1.0.0
*/

/* Globális stílusok a hero szekcióhoz */

/* Body stílusok */
body {
    margin: 0;
    padding: 0;
}

/* Site content háttér színe */
.site-content {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Container padding */
.container {
    padding: 2rem 0;
}

/* Hiba üzenetek stílusa */
.error {
    color: #dc3545;
    font-weight: 500;
}

/* Loading animáció */
.loading {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
}

.loading:after {
    content: " ";
    display: block;
    width: 16px;
    height: 16px;
    margin: 2px;
    border-radius: 50%;
    border: 2px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: loading 1.2s linear infinite;
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Reszponzív beállítások */
@media (max-width: 768px) {
    .container {
        padding: 1rem 0;
    }
} 