.gold-text {
    color: gold;
    font-weight: bold;
}

.green-text {
    color: green;
}

.red-text {
    color: red;
}

.prayer-grid-container {
    width: 150px;
    background-color: #3B322B;
    margin: 0 auto;
    padding: 10px;
}

.prayer-grid {
    display: grid;
    grid-template-columns: repeat(3, 40px);
    grid-auto-rows: 40px;
    gap: 10px;
    justify-content: center;
}

.prayer {
    width: 40px;
    height: 40px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-image: url("/img/calculators/prayer_duration/prayeroff.png");
    background-size: 160px 160px;
}

.prayer.active {
    background-image: url("/img/calculators/prayer_duration/prayeron.png");
    background-size: 160px 160px;
}

.progress-container {
    position: relative;
    width: 100%;
    height: 24px;
    background-color: #333;
    border-radius: 5px;
    margin: 15px auto;
    overflow: hidden;
}

.progress-bar {
    height: 24px;
    width: 0%;
    background-color: rgb(6, 122, 0);
    color: black;
    font-weight: bold;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    pointer-events: none;
    white-space: nowrap;
}

.progress-textonly {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    white-space: nowrap;
    margin: 8px 0 0 0;
    width: 100%;
}

.progress-bar-root {
    width: 90%;
    margin: 0 auto;
}

#searchResults {
    position: absolute;
    background: black;
    border: 1px solid gold;
    width: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.search-item {
    padding: 5px;
    cursor: pointer;
    color: gold;
}

.search-item:hover {
    background: darkgoldenrod;
}

button {
    background-color: gold;
    color: black;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 10px;

    &:hover {
        background-color: darkgoldenrod;
    }
}

.input-group {
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;

    label {
        color: hwb(51 0% 0%);
        font-weight: bold;
        margin-right: 10px;
        flex: 0 0 20%;
    }

    input,
    select {
        min-width: 20%;
        box-sizing: border-box;
        padding: 5px;
        margin-right: 25px;
        border: 1px solid gold;
        border-radius: 10px;
        background-color: black;
        color: white;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 10px 7px;

        &:focus {
            outline: none;
            border-color: gold;
        }
    }

    button {
        align-self: center;
    }
}

.justify-center {
    display: flex;
    justify-content: center;
    align-items: center;
}