



.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, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Prevent scrollbars */
    overflow-y: auto;
    background-color: #F0FFFF; /* Light yellow */
}
main {
    flex: 1; /* <-- important! makes the content stretch */
}

.gfont {
    font-family: 'Pacifico', sans-serif;
    font-size: 22px;
}


.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
   
}

.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    
}

.roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
   
}

.roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
}


.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.super-rounded {
    border-radius: 30px;
}

footer a, .navbar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size:16px;
    }

    footer a:hover, .navbar a:hover {
        color: red;
    }

.navbar.bg-dark .nav-link {
    color: white !important;
}

    .navbar.bg-dark .nav-link:hover {
        color: red !important;
    }


.wrapper {
    display: flex;
    min-height: 100vh; /* Full screen height */
    overflow: hidden; /* No scroll on wrapper */
    flex-direction: row;
    align-items: stretch;
}

.sidenav {
    width: 220px;
    background: #2c3e50;
    color: white;
    padding-top: 20px;
    overflow-y: auto;
    
}

.sidenav ul {
list-style: none;
padding: 0;
}

.sidenav ul li {
padding: 10px 20px;
}

    .sidenav ul li a {
        color: white;
        text-decoration: none;
        display: block;
        font-size:16px;
    }

.sidenav ul li a:hover {
background: #34495e;
border-radius: 4px;
}
.sidenav ul li.active a {
    background: #1abc9c; /* bright color for active */
    color: white;
    border-radius: 4px;
    padding:0 0 0 5px;
}

.main-content {
    flex-grow: 1;
    padding: 20px;
    background: transparent;

}

.alert-button {
    background-color: #e74c3c; /* red */
    color: white;
    border: none;
    padding: 8px 15px;
    margin-left: 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}


.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
