/* Global Dark Mode */
body {
    margin: 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
}

a {
    color: #1e88e5;
    text-decoration: none;
}

a:hover {
    color: #90caf9;
}

/* Header Buttons */
.header-buttons {
    position: fixed;
    top: 20px;
    right: 20px;
}

.header-buttons a {
    margin-left: 10px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.header-buttons a.signup {
    background-color: #1e88e5;
    color: #fff;
}

.header-buttons a.signup:hover {
    background-color: #1565c0;
}

.header-buttons a.login {
    background-color: transparent;
    border: 2px solid #1e88e5;
    color: #1e88e5;
}

.header-buttons a.login:hover {
    background-color: #1e88e5;
    color: #fff;
}

/* Forms */
form {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    max-width: 400px;
    margin: 50px auto;
}

form input, form select, form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    background-color: #2a2a2a;
    color: #e0e0e0;
}

form button {
    background-color: #1e88e5;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

form button:hover {
    background-color: #1565c0;
}

/* Links list in dashboard */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    padding: 10px;
    margin-bottom: 8px;
    background-color: #1e1e1e;
    border-radius: 8px;
}

/* Public Page Links */
.public-link {
    display: block;
    padding: 15px;
    margin: 10px 0;
    text-align: center;
    background-color: #1e88e5;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}

.public-link:hover {
    background-color: #1565c0;
}

/* Footer Branding */
footer {
    color: #888;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
}
