/* 🔐 Login/Signup Buttons */
/*───────────── BASIC ───────────── */
html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

/*───────────── BASIC END ───────────── */
.auth-buttons button {
    background-color: #007bff;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 40px;
    width: 113px;
    font-size: 14px;
}

.auth-buttons button:hover {
    background-color: #218838;
    font-weight: bolder;
    transform: scale(1.05);
    color: white;
}

#logoutButton button {
    background-color: #dc3545;
    color: white;
    border: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 40px;
    width: 113px;
    font-size: 14px;
}

#logoutButton button:hover {
    background-color: #a71d2a;
}

/* 🔒 Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.modal-content h2 {
    margin-top: 0;
    font-size: 22px;
}

.modal-content input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.modal-content button {
    background-color: #04a2d3;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #0279a0;
}

.close {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 24px;
    color: #888;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.forgot {
    text-decoration: none;
    display: block;
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #007bff;
}

.forgot:hover {
    text-decoration: underline;
}

.modal-text {
    text-align: center;
    margin-top: 10px;
    margin-bottom: -10px;
}

.modal-text a {
    text-decoration: none;
    color: #007bff;
}

/* Responsive Navbar Toggle */
.nav-links {
    display: none;
    flex-direction: column;
}

.nav-links.show {
    display: flex;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex !important;
        flex-direction: row;
    }
}

