
.navbar {
    background-color: var(--secondary-background);
    padding: 15px 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-container {
    margin: 0 auto;
    display: contents;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar-left,
.navbar-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.navbar-right {
    justify-content: flex-end;
}

.navbar-center {
    flex: 0 0 auto;
    text-align: center;
}


.navbar-title {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.navbar-logo {
    max-height: 70px;
}

.logo-dark,
.logo-light {
  display: none;
}

html.dark-theme .logo-dark {
  display: block;
}

html.light-theme .logo-light {
  display: block;
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.navbar-menu li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
    padding: 10px;
}

.navbar-menu li a:hover {
    background-color: var(--element-color-primary);
    box-shadow: 0 0 10px #0004;
    border-radius: 5px;

}

.navbar-menu-item{
    position: relative;
    top: 1px;
    color: var(--text-color);
    text-decoration: none;
}




.modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background-color: var(--background);
    color: var(--text-color);
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    font-family: inherit;
}

.modalBtn {
    margin-top: 1.5rem;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    background-color: #2980b9;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modalBtn-red {
    background-color: red;
}

.modalBtn:hover {
    box-shadow: 0px 13px 18px #0002 !important;
    transform: scale(1.05);
    transition: all ease 500ms;
}

