
html.dark-mode {
    color-scheme: dark;
    background-color: #18191A;
}
body{
    min-height: 120vh;
}
.wrapper{
    margin-top: 60px;
}

@font-face {
    font-family: Nautilus;
    src: url(../fonts/Nautilus.otf)
}

@font-face {
    font-family: Jamal;
    src: url(../fonts/Jamal.ttf)
}
a {
    text-decoration: none; 
    cursor: pointer; 
    transition: color 0.2s ease-in-out, text-decoration 0.2s ease-in-out;
}
button {
    display: inline-block;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center; 
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-out;
}

button:active {
    transform: translateY(1px); 
}


button:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
}
input, select {
    /* Layout and Sizing */
    width: 100%; 
    padding: 10px 12px;
    margin: 8px 0; 
    box-sizing: border-box; 
    
    /* Appearance */
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

input:focus {
    box-shadow: 0 0 0 2px rgba(28, 100, 242, 0.2); 
    outline: none;
}

input::placeholder {
    color: #999;
}
nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #34495e;
}

nav.scrollnav {
    background-color: rgba(0, 0, 0, 0.795);
}

/* logo style */
.logo{
    width: 100px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0px;
    display: flex;
    align-items: center;
}
.logo img{
    width: 100%;
    display: block;
    margin: 0 auto;
    margin-top: 10px;
    transform: scale(1);
    transition: all .5s ease-in-out;
    z-index: 100000;
}
.logo:hover img{
    transform: scale(1.8);
    margin-top: 50px;
}
.navbar:not(.browser-default) {
    padding-left: 0;
    list-style-type: none;
}

nav .navbar {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    /* overflow: hidden; */
    transition: all .5s ease-in-out;
    position: relative;
}
.navbar li {
    margin-right: 10px;
    list-style: none;
    display: inline;
    border-radius: 15px;
    transition: all 0.5s linear;
}
/* mode controller */
.mode-control{  
    position: absolute;
    display: flex !important;  
    align-items: center;
    justify-content: space-evenly !important;
    border-radius: 10px !important;
    background-color: #242526;
    color: #9ACD32;
    padding: 10px;
    transition: width 0.4s ease-out;
}
.dark-mode .mode-control{
    background-color: #ffffff;
    color: #242526;

}
.mode-status-icon {
    color: #ffffff;
    /* opacity: .5; */
    margin-left: 20px;
    font-size: 22px;
    cursor: pointer;
}

.dark-mode .mode-status-icon {
    color: #9ACD32;
    opacity: 1;
}

.logging-btn{
    width: 50px;
    height: auto;
    box-sizing: border-box;
    background-color: #07F;
    padding: 10px;
    border-radius: 20px;
    /* margin-top: -10px; */
    text-align: center;
    cursor: pointer;
}
.logging-btn a{
    text-align: center;
}
.logging-btn:has(.logout-link){
    background-color: #9ACD32;
}
.logging-btn:has(.logout-link) .logout-link i{
    color: #34495eb0;
}
.logging-btn:has(.login-link) .login-link i{
    color: #9ACD32;
}
nav a {
    width: 100%;
    font-size: 18px;
    color: #ffffff;
    font-family: Nautilus;
    padding: 10px;
    transition: all 0.3s ease-in-out 0s;
}

.nav-link.active,
.nav-link:hover {
    border-top: 3px solid yellowgreen !important;
    transition: all 1s linear;
    transition: border-height 3s linear;
}

.menu {
    display: none;
}
