body {
    background: black;
    color: white;
    font-family: 'Arial', sans-serif;
}

div#main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

/* Add styles for form container */
div#main > form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

/* Keep the left alignment for all direct children */
div#main > * {
    text-align: left;
}

@media (max-device-width: 960px) {
    body {
      font-size: 32px;
    }
}

#header {
    display: flex;
    justify-content: flex-end;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    min-height: 60px;
}

#header a {
    margin-left: 20px;
    text-decoration: none;
    color: #f8f8f8;
}

#header a:hover {
    text-decoration: underline;
}

/* Profile Container */
.profile-container {
    display: flex;
    align-items: center;
}

/* Profile Link Styling */
.profile-link {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

/* Avatar Image Styling */
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 8px;
    object-fit: cover;
}

#header a.link {
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.profile-tab {
    width: 80%;
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.profile-tab {
    width: 80%;
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #444;  /* Darker background for the container */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Table styles */
.profile-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.profile-table th, .profile-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #555;  /* Darker border for rows */
}

.profile-table th {
    background-color: #555;  /* Dark background for table headers */
    color: #f4f4f9;  /* Light text for headers */
}

.profile-table tr:hover {
    background-color: #666;  /* Slightly lighter dark background on hover */
}

.profile-table td {
    color: #f4f4f9;  /* Light text for table data */
}

/* Responsive design */
@media screen and (max-width: 600px) {
    .profile-table {
        font-size: 14px;
    }
    .profile-container {
        width: 90%;
    }
}

