/* Background themes */
/* .theme-galaxy {
    background: url('../../backgrounds/galaxy.webp') no-repeat center center / cover;
}

.theme-forest {
    background: url('../../backgrounds/forest.webp') no-repeat center center / cover;
} */

/* Coin element */
.coin {
    position: absolute;
    width: 80px;
    height: 80px;
    object-fit: contain;
    transform-origin: center;
}

/* Trail effect */
.trail-sparkle {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../../trails/sparkle.png') repeat;
    animation: sparkle 2s linear infinite;
}

/* Animation container */
.coin-toss-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: none;
    /* Initially hidden */
}

.make-wish-container {
    padding: 30px;
    /* background-color: #1f2122; */
    /* background-image: url('../../backgrounds/forest.webp'); */
    background-size: cover;
    background-position: center;
    border-radius: 23px;
}

#wishForm {
    background-color: rgba(31, 33, 34, 0.9);
    border-radius: 23px;
    padding: 20px;
    text-align: left;
}

.heading-section h4 {
    max-width: 500px;
    text-align: center;
    margin: auto;
    background-color: rgba(31,33,34,0.9);
    border-radius: 23px;
    padding: 20px;
    color: #fff;
}

#makeWishContainerRow {
    align-items: center;
    text-align: center;
    flex-direction: column-reverse;
}

#message {
    color: #fff;
}

#inputControls label {
    color: #fff;
}