* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: url('../images/home_background.jpg') no-repeat center center/cover;
    height: 100vh;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden; /* Removes scrolling */
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.navbar ul li a:hover {
    color: yellow;
}

.container {
    width: 40%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-height: 90vh; /* Limits the height to prevent scrolling */
    overflow-y: auto; /* Allows scrolling within the form if needed */
}

.btn {
    background-color: #333; /* Match Logout button color */
    color: white;
    text-decoration: none; /* Removes underline */
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    display: inline-block;
    margin-right: 10px;
}

.btn:hover {
    background-color: #555;
}

.profile-center {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically */
    height: 100%; /* Take full height of parent */
}

.profile-picture {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #3498db;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid #00FF00;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-info {
    color: #00FF00;
    font-size: 1.2em;
    opacity: 0.8;
    text-align: center; /* Center the text within profile-info */
}

