/* Base/Global Styles */
body {
    background-color: skyblue;
}

.main-body {
    background-color: #4b4b4b !important;
    color: white !important;
}

/* Layout and Utility Classes */
.is-hidden {
    display: none;
}

.inline-block {
    display: inline-block;
}

/* Color Classes */
.bg-color-miss {
    background-color: #7a4201;
}

.bg-color-grey {
    background-color: #958d8d;
}

.bg-color-black {
    background-color: black;
}

.bg-color-blue {
    background-color: #0187da;
}

.bg-color-red {
    background-color: #ac2626;
}

.bg-color-yellow {
    background-color: #f1ba2d;
}

.bg-color-green {
    background-color: #85d833;
}

.bg-color-white {
    background-color: white;
}

.bg-primary {
    background-color: #ffa500 !important;
    color: black;
}

.text-black {
    color: black;
}

.pagination {
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: #ffa500;
    --bs-pagination-hover-color: #ffa500;
    --bs-pagination-focus-color: #ffa500;
    --bs-pagination-active-bg: #ffa500;
    --bs-pagination-active-border-color: #ffa500;
}

/* Component Styles */

/* Badges */
.circle-badge {
    width: 30px;
    height: 30px;
    color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
}

.score-badge {
    width: 60px;
    height: 30px;
    color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 40%;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 2px;
}

/* Buttons */
.primary-btn-color {
    background-color: #ffa500;
    font-weight: bold;
}

.btn-primary {
    --bs-btn-color: black;
    --bs-btn-bg: #ffa500;
    --bs-btn-border-color: #ffa500;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: black;
    --bs-btn-hover-border-color: #ffa500;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: black;
    --bs-btn-active-bg: #ffa500;
    --bs-btn-active-border-color: #ffa500;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: black;
    --bs-btn-disabled-bg: #ffa500;
    --bs-btn-disabled-border-color: #ffa500;
}

/* Grid Elements */
.button-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 100%;
    box-sizing: border-box;
    margin-left: 20%;
    margin-right: 20%;
}

.score-btn-grid {
    border-radius: 20px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 55px;
    font-size: 1rem;
    max-width: 240px;
}

.score-btn-grid:hover {
    color: black;
    background-color: white;
    border-color: black;
    font-weight: bold;
}

@media (max-width: 768px) {
    .score-btn-grid {
        height: 45px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .button-grid {
        margin-left: 0;
        margin-right: 0;
    }
}

.nav-btn-grid {
    border-radius: 20px;
    margin: 5px 5px;
    color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.nav-btn-grid:hover {
    color: black;
    background-color: white;
    border-color: black;
    font-weight: bold;
}

@media (max-width: 768px) {
    .nav-btn-grid {
        width: 95px !important;
        height: 50px !important;
    }
}

@media (min-width: 768px) {
    .nav-btn-grid {
        width: 130px !important;
        height: 50px !important;
    }
}

/* Icons */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin-bottom: 1rem;
    font-size: 2rem;
    border-radius: .75rem;
}

/* Links */
.hyperlink {
    color: #ffa500;
}
