/* Mystic color scheme and background styles */
body {
    background-color: #003;
    /* deep brown */
    color: #d4af37;
    /* golden text */
    font-family: 'Georgia', serif;
    align-items: center;
    display: grid;
}

#responseContainer {
    border: 2px solid lightblue;
    color: white;
    opacity: 0.7;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
    display: none;
    margin: 30px;
    font-size: 16px;
}

#responseContainer strong, #responseContainer h2, #responseContainer h3, #responseContainer h4 {
    color: #d4af37;
}

h2 {
    text-align: center;
    color: #d4af37;
    margin: 0;
}

#responseBox {
    padding: 10px;
    margin-bottom: 20px;
    background-color: #1c1c1c;
    /* dark gray */
}

/* Circular window for the coffee cup image */
#coffeeCupImage {
    width: 200px;
    height: 200px;
    border-radius: 10%;
    background: url('../images/empty_coffee_cup.jpg') no-repeat center;
    background-size: cover;
    border: 1px solid white;
    display: block;
    margin: 20px auto;
    display: none;
    /* Center the coffee cup image */
}

/* Placeholder for mystic animation - replace with actual animation */
.mystic-animation {
    height: 300px;
    width: 300px;
    mix-blend-mode: lighten;
    margin: 20px auto;
    opacity: 0.8;
    background: url('../images/citanje-dlana.jpg') no-repeat center;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 0 15px 5px rgba(255, 255, 200, 0.8);
}

/* Upload section styling */
.upload-section {
    color: #ffffff;
    text-align: center;
    padding: 30px 0px;
    font-size: medium;
}

.upload-section,
#sendButtonContainer {
    display: flex;
    justify-content: center;
    align-items: center;
}

#sendButton,
#resetButton {
    display: none;
    /* Initially hide send button */
    margin-top: 20px;
    margin: auto;
    /* Adds space above the send button */
}

.upload-section button,
.send-picture {
    font-size: x-large;
    display: block;
    width: 300px;
    height: 40px;
    align-self: center;
}

button {
    background-color: #d4af37;
    color: #000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    width: 300px;
    /* Fixed width for consistency */
    height: 40px;
}

button:disabled {
    background-color: #9e9e9e;
}

@media (max-width: 768px) {
    #responseContainer {
        font-size: 18px;
        /* Veće slovo za bolju čitljivost */
    }

    button {
        font-size: 20px;
        /* Veće slovo na dugmićima */
    }

}