body {
    background-color: #000;
}

.styled-text {
    white-space: nowrap;
    font-size: 26px;
}

@media screen and (max-width: 768px) {
    .styled-text {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .styled-text {
        font-size: 16px;
    }
}


.navbar {
    background: #fff;
}

h1 {
    color: #000;
    /* Set the color you prefer */
}

#flash {
    transition: opacity 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0;
    z-index: 99999;
    pointer-events: none;
}

.center {
    text-align: center;
    display: block;
}

#countdown-panel {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 9px 20px;
    background-color: #AB7136;
    color: #fff;
    border-radius: 25px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

h5 {
    font-size: 15px;
}

ul {
    list-style-type: none;
    text-align: left;
    top: 0;
    width: 100%;
    z-index: 99999;
    /* padding-left: 0px; */
}

#welcome-modal {
    z-index: 9999;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: black;
    z-index: 8888;
}

#countdown-panel h2 {
    margin: 0;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

#top-left-button {
    position: absolute;
    top: 10px;
    left: 10px;
    ;
}

#top-left-button button {
    background-color: #fff;
    color: #000;
}


#top-right-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 99999;
}

#top-right-button button {
    background-color: #000;
    color: #fff;
}

.btn-primary {
    background-color: #AB7136;
}

#timer-panel {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 9px 20px;
    background-color: #AB7136;
    color: #fff;
    border-radius: 25px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
}

#finalTimer {
    color: #AB7136;
}

.modal.fade .modal-dialog.modal-dialog-zoom {
    -webkit-transform: translate(0, 0)scale(.5);
    transform: translate(0, 0)scale(.5);
}

.modal.show .modal-dialog.modal-dialog-zoom {
    -webkit-transform: translate(0, 0)scale(1);
    transform: translate(0, 0)scale(1);
}


input:required:valid {
    border: 1px solid #ced4da;
}

.white {
    color: white;
}

.white:hover {
    color: lightblue;
}

.smaller {
    font-size: 0.7em;
}

.stars i {
    color: #ddd;
    /* Default color of stars */
    cursor: pointer;
}

/* This will reverse the direction of the hover effect */
.stars { 
    justify-content: center;
    direction: ltr;
    font-size: xxx-large;
}

.stars i {
    direction: rtl;
    /* Keep the stars icon direction correct */
}

/* Color for hovered or selected stars */
.stars i.hover,
.stars i.selected {
    color: #ffc107;
}