/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 1.5rem;
}

.container {
    max-width: 500px;
    margin: 50px auto;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
}

.container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

input[type="text"],
input[type="password"],
button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

button {
    background-color: #2c3e50;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #34495e;
}

a {
    text-decoration: none;
    color: #2c3e50;
}

/* Profile Circle */
.profile-container {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;  /* Makes the div circular */
    overflow: hidden;    /* Ensures the image fits within the circle */
    cursor: pointer;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Ensures the image fills the circle without stretching */
}

.profile-circle:hover {
    background-color: #34495e;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 5px;
    z-index: 1;
}

.dropdown-content a {
    display: block;
    padding: 10px;
    color: #2c3e50;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #f4f4f9;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: #2c3e50;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}
