/* Global styles */
body {
    margin: 0;
    padding: 0;
    background-image: url('../imgs/ABC.png');
    background-size: cover; /* Ovim se slika širi da pokrije celu pozadinu */
    background-position: center; /* Centriranje slike */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

.container {
    text-align: center;
    background-color: rgba(31, 31, 31, 0.7);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 500px;
    position: fixed;
    bottom: 50px;
}

/* Button styles */
.btn {
    display: block;
    width: auto;
    padding: 18px;
    margin: 15px 0;
    font-size: 20px;
    color: black;
    background:linear-gradient(to bottom, #ffc86b, #725118); /* Bright gold */
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    background-color: #ff8f00; /* Darker gold */
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 184, 0, 0.4);
}

.btn:active {
    transform: translateY(2px);
}

/* Refresh button styling with icon */
.refresh-btn {
    background-color: transparent;
    color: #ffb800;
    border: none;
    font-size: 36px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.refresh-btn:hover {
    color: #ff8f00; /* Darker gold on hover */
    transform: scale(1.2); /* Slight zoom effect */
}

.refresh-btn:active {
    transform: scale(0.95);
}
h1{
    color: #ff8f00;
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        padding: 15px;
        width: 80%;
    }

    .btn {
        font-size: 22px;
        padding: 14px;
        width: auto;
    }

    .refresh-btn {
        font-size: 32px;
    }
    body{
        background-image: url('../imgs/ABC-mobile.png');
        background-size: cover; /* Ovim se slika širi da pokrije celu pozadinu */
    background-position: center; /* Centriranje slike */
    }
}