:root {
    --bs-primary: #2a5a0fd1; /* Olive green */
    --bs-primary-dark: #6cb072; /* Manually adjusted darker shade for hover state */
    --bs-secondary: #E0E0E0; /* Off-white color */
}

* {
    margin-bottom: 5px;
    font-weight: bold;

}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    position: relative;
    margin-bottom: 60px;
    padding: 0;
    background: transparent;
    z-index: 0;
}

body::before {
    content: "";
    position: fixed; /* Use fixed to cover the whole viewport like background-attachment: fixed */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://cdn.pixabay.com/photo/2021/01/05/06/41/forest-5889923_1280.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3; /* Set the opacity of the image */
    z-index: -1; /* Ensure the image stays behind the content */
}

.content {
    position: relative;
    z-index: 1; /* Ensure that content is above the pseudo-element */
}



.dialpad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* TWOARROW DIALPAD*/

.dialpad-twoarrow {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}


.dialpad-number {
    width: 100%;
    padding: 15px 0;
    font-size: 1.5rem;
    border-radius: 15px;
}


/* Search Bar for Users */
#userSearch {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    box-shadow: none;
}

#userSearch:focus {
    outline: none;
    border-bottom: 2px solid var(--bs-primary);
}

/* GameMode selection button */
.btn-group-toggle > .btn input[type="radio"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.btn-group-toggle > .btn-secondary.active,
.btn-group-toggle > .btn-secondary:active {
    background-color: var(--bs-primary);
    color: white;
}


.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    border: none;
}

.btn-primary:hover {
    background-color: var(--bs-primary-dark);
    border-color: var(--bs-primary-dark);
}

.btn-secondary {
    background-color: var(--bs-secondary);
    color: #333;
    border: none;
    margin-left: 5px;
}

    .btn-secondary:hover {
        background-color: #878787;
        color: #000;
    }

/*
    BUTTON COLORS for Two and Three Arrow Games
*/

.green-button {
    background-color: #3D791B;
    color: white;
}

.yellow-button {
    background-color: #c3f200;
    color: white;
}

.orange-button {
    background-color: #ff9c00;
    color: white;
}

.darkred-button {
    background-color: #9c0000;
    color: white;
}

.darkyellow-button {
    background-color: #ffda6e;
    color: white;
}


.score-quiver-heading {
    font-family: Papyrus;
    font-weight: 900;
}


.animate-charcter {
    text-transform: uppercase;
    background-image: linear-gradient(135deg, #0f5132 0%, #3a6b51 25%, #4f8f64 50%, #6ea982 75%, #a7c4a0 100%);
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    display: inline-block;
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

.logo-style {
    margin-left: 10%;
    margin-top: 10%
}

.login-btn {
    font-size: 1.2em; /* Increase font size */
    padding: 10px 20px; /* Increase padding for a larger button */
    background-color: #2a5a0fd1; /* Bright pink background for a 'funny' look */
    color: white; /* White text color */
    border:none; /* Border color similar to background */
    border-radius: 10px; /* Rounded corners for a smoother look */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effects */
}

.login-btn:hover {
    background-color: #ffdf00; /* Bright yellow background on hover */
    color: #000000; /* Black text color on hover */
}

.logout-btn {
    font-size: 1.2em; 
    padding: 10px 20px; 
    background-color: transparent; 
    color: #ff0000ab; 
    border: 1px solid #ff0000ab;
    border-radius: 10px; 
    transition: background-color 0.3s, color 0.3s; 
}

    .logout-btn:hover {
        background-color: transparent; 
        color: darkred;
        border-color: darkred;
    }

.trophyimg {
    max-height: 150px;
    max-width: 100%;
    display: block;
    margin: 20px auto;
    transition: transform 0.05s linear;
}