/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #555;
    text-align: left;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

a {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: inline-block;
}

a:hover {
    text-decoration: underline;
}

/* Dashboard Specific Styles */
.dashboard-container {
    max-width: 600px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.dashboard-container h1 {
    color: #007bff;
    margin-bottom: 2rem;
}

.dashboard-container p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.dashboard-container a {
    display: block;
    margin: 1rem 0;
    padding: 0.75rem;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dashboard-container a:hover {
    background-color: #0056b3;
}

/* Profile Page Styles */
.profile-container {
    max-width: 600px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.profile-container h1 {
    color: #007bff;
    margin-bottom: 1.5rem;
}

.profile-container p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.profile-container form {
    margin-top: 1.5rem;
}

.profile-container select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

/* Logout Page Styles */
.logout-container {
    max-width: 400px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logout-container h1 {
    color: #007bff;
    margin-bottom: 1.5rem;
}

.logout-container p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.logout-container a {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.logout-container a:hover {
    background-color: #0056b3;
}