html {
    font-size: 14px;
    height: 100%;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    /*position: relative;
    min-height: 100%;*/
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
body {
    min-height: 100%;
}
live-preview-root{
    display:none;
}
#navbarSupportedContent .nav-item {
    padding: 0px 20px 0px 20px;
    font-size:20px;
}
.top-bar a {
    padding: 0;
}
.btn-link {
    font-weight: 400;
    text-decoration: none;
    color: #808080;
}
.site-name:hover{
    text-decoration: underline;
}
.btn-custom {
    background-color: white;
    color: grey;
    border-color: grey; /* Optionally set border color */
    /* Add any other styles as needed */
}

.loader-container {
    width: 100vw; 
    height: 100vh; 
    position: fixed; 
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8); 
    z-index: 9999; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    overflow: hidden; 
}

.loader {
    border: 16px solid #f3f3f3; 
    border-top: 16px solid #3498db; 
    border-radius: 50%; 
    width: 100px; 
    height: 100px; 
    animation: spin 2s linear infinite; 
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
