.btnG {
    background-color: #ffcc04 !important;
    border-color: #ffcc04 !important;
    width: 100%;
    color: rgb(0, 0, 0);
    font-size: 150% !important;
    padding: 7%;
    border-radius: 15px;
    font-family: Arial;
}

.btnG:hover {
    background-color: #ffdf5e !important;
    border-color: #ffdf5e !important;
    color: rgb(255, 255, 255) !important;
}


/* Regular styling */

#dynamicText {
    text-align: center;
    color: #259c7c;
}

.btnHelp {
    background-color: #ffcc04;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 50px;
    padding: 20px;
    font-size: 20px;
    width: 100%;
}

.btnHelp:hover {
    color: white !important;
}

.link-116 {
    color: #737373;
    font-size: 20px;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 5px;
    position: relative;
    overflow: hidden;
}

.link-116::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: #737373;
    width: 0;
    transition: width 0.3s ease;
}

.link-116:hover::after {
    width: 100%;
    animation: heartbeat116 1.5s infinite;
}

@keyframes heartbeat116 {
    0%,
    100% {
        width: 100%;
    }
    50% {
        width: 60%;
    }
}



.btnNav:hover {
    background-color: #205c7886;
}


.my-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%234ccaae' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");

}


/* FULLSCREEN OVERLAY */
#page-loader {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 9999;

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

/* Container */
.logo-loader {
    position: relative;
    width: 120px;
    height: 120px;
}

/* Logo */
.logo-loader img {
    width: 70px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Spinning ring */
.spinner-ring {
    width: 120px;
    height: 120px;
    border: 4px solid rgba(0,0,0,0.08);
    border-top: 4px solid #4ccaae;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}
