/* styles.css */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1c1c1c;
    color: white;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    background-color: #4a2956;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Adjusting the logo size */
.logo img {
    width: 100px; /* Increase the width of the logo */
    height: 100px; /* Maintain the aspect ratio */
}


nav {
    display: flex;
    justify-content: center; /* Center buttons */
    gap: 60px; /* Adjust spacing between buttons */
    flex-grow: 1;
}

.nav-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: transform 0.3s, background-color 0.3s;
    padding: 10px 15px;
    border-radius: 8px;
}

    .nav-button img {
        width: 32px;
        height: 32px;
        margin-right: 10px;
    }

    .nav-button:hover {
        transform: scale(1.1);
        background-color: #0c5345;
        color: white;
    }

.profile img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: gray;
}


/* styles.css */

.profile {
    position: relative;
}

    .profile img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        cursor: pointer;
    }

.profile-tab {
    position: absolute;
    top: 80px; /* Adjust based on profile picture size */
    right: 0;
    background-color: #ffffff;
    color: #000;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 200px;
    display: none; /* Initially hidden */
    z-index: 10;
}

    .profile-tab img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-bottom: 10px;
    }

    .profile-tab p {
        margin: 10px 0;
        font-size: 18px;
        font-weight: bold;
    }

/* Center and style the buttons */
.profile-button {
    display: block;
    width: 80%; /* Adjust button width */
    padding: 10px;
    margin: 5px 0;
    font-size: 16px;
    text-align: center;
    background-color: #0c5345;
    border: none;
    border-radius: 4px;
    text-decoration: none; /* Removes underline for links */
    cursor: pointer;
}

    .profile-button:hover {
        background-color: #0c5345;
    }

