@media (min-width: 200px) {
    .hidden-mobile {
        display: none !important;
    }
}        

@media (min-width: 768px) {
    .hidden-mobile {
        display: none !important;
    }
}
@media (min-width: 992px) {
    .hidden-mobile {
        display: block !important;
    }
}       

.gradient-custom-2 {
    background-color: #aee1f9;
    background-image: linear-gradient(315deg, #aee1f9 0%, #f6ebe6 74%);
}

@media (min-width: 768px) {
    .gradient-form {
        height: 50vh !important;
    }
}
@media (min-width: 769px) {
    .gradient-custom-2 {
        border-top-right-radius: .3rem;
        border-bottom-right-radius: .3rem;
    }
}    

.main-logo {
    max-height: 75px;
    width: auto;
}

.rocket-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%; /* Scale proportionally */
    max-height: 90%; /* Responsive */
    opacity: 0.15; /* Semi-transparency */
    z-index: -1; /* Behind the content */
}

.small-text {
    font-size: small;
}

.tiny-text {
    font-size: x-small;
}

#goTopBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed position at the bottom right */
    bottom: 20px;
    right: 20px;
    z-index: 99; /* Ensure it’s on top of other content */
    background-color: #007bff; /* Bootstrap primary color */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

#goTopBtn:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.nav-link.active {
    color: orangered !important;
  }

.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../images/centralloading.gif') 50% 50% no-repeat rgb(249,249,249);
    opacity: .5;
}  

.notify-badge{
    position: absolute;
    right:10px;
    top:15px;
    background:greenyellow;
    text-align: left;
    border-radius: 8px 8px 8px 8px;
    color:black;
    padding:2px 4px;
    font-size:x-small;
    font-weight: bold;
}

.alert-minimalist {
    background-color: rgb(241, 242, 240);
    border-color: rgba(149, 149, 149, 0.3);
    border-radius: 3px;
    color: rgb(149, 149, 149);
    padding: 10px;
}
.alert-minimalist > [data-notify="icon"] {
    height: 50px;
    margin-right: 5px;
    float:left;
}
.alert-minimalist > [data-notify="title"] {
    color: rgb(51, 51, 51);
    display: block;
    font-weight: bold;
    margin-bottom: 0px;
    white-space: nowrap;
}
.alert-minimalist > [data-notify="message"] {
    font-size: 100%;
}

.color-green {
    color: green;
}

.color-red {
    color: red;
}

.color-orange {
    color: orange;
}

.color-gray {
    color: gray;
}

.color-orange-red {
    color: orangered;
}

.link-disabled {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: gray;
}   

/* General styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Flexbox container for the entire page */
/* Reset margins for the nav bar */

/* Ensure the body flexbox layout doesn't affect the nav bar */
body {
    display: flex;
    flex-direction: column;
}

/* Main content area */
#gencontent {
    flex: 1;
}

/* Footer styles */
.footer {
    flex-shrink: 0;
    background-color: #f8f9fa; /* Light background color */
    padding: 10px 0; /* Optional: Adjust padding as needed */
}