* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Ubuntu", serif;
    font-weight: 300;
    font-style: normal;
    background-color: #000000; /* Changes the Background Color of the Page*/
    color: #ffffff; /* Changes the Text Color of the page */
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles maintained from previous pages */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.brand {
    font-size: 1.2rem;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
}

/* Profile Container */
.profile-container {
    background: linear-gradient(180deg, #ffffff, #000000); /* Profile Container Background Color*/
    border-radius: 8px;
    margin-top: 25px;
    position: relative;
}

/* Banner Section */
.banner {
    height: 200px;
    position: relative;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.banner-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 2rem;
    font-weight: bold;
}
.banner-background {
    width: 100%; /* Adjust width as needed */
    height: 200px; /* Maintain aspect ratio */
}

/* Profile Section */
.profile-content {
    padding: 20px;
    margin-top: -60px;
}

.profile-header {
    display: flex;
    align-items: flex-end;
    margin-bottom: 0;
    object-fit: cover;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #000000;
    background-color: #ffffff;
    margin-right: 20px;
    object-fit: cover;
    z-index: 10;
}

.profile-actions {
    display: flex;
    gap: 10px;
}


.button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #444;
}

/* Activity Section */
.activity {
    background-color: #242424;
    border-radius: 4px;
    padding: 15px;
    margin-top: 20px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 4px;
    background-color: #1a1a1a;
    margin-bottom: 10px;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background-color: #ff6a0000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
        /* Add these new styles for the music player */
        .music-player {
            border-radius: 4px;
            padding: 15px;
            margin-top: 20px;
            display: flex;
            align-items: center;
            gap: 15px;

            display: flex;
            align-items: center;
            gap: 15px;
            padding: 10px;
            border-radius: 4px;
            background-color: #1a1a1a;
            margin-bottom: 10px;
        }

        .album-art {
            width: 100px;
            height: 100px;
            border-radius: 4px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .album-art img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .song-info {
            flex-grow: 1;
        }

        .song-title {
            font-size: 0.9rem;
            margin-bottom: 4px;
        }

        .song-artist {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        .progress-container {
            flex-grow: 1;
            height: 4px;
            background-color: #464646; /* Progress background color */
            border-radius: 2px;
            margin: 8px 0;
            position: relative;
        }

        .progress-bar {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            background-color: #ffffff;
            border-radius: 2px;
            width: 75%;  /* This represents the song progress */
        }

        .time-stamps {
            display: flex;
            justify-content: space-between;
            font-size: 0.7rem;
            opacity: 0.6;
        }

        .player-icon {
            width: 16px;
            height: 16px;
            opacity: 0.6;
        }

        .listening-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            opacity: 0.8;
            margin-bottom: 8px;
        }

        .listening-badge::before {
            content: "";
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: #00dd25;
            border-radius: 50%;
        }
        
/* Footer*/
.footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}