body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #13171A;
    /* Dark background */
    color: #fff;
    /* White text */
    line-height: 1.6;
}

/* header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        } */

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.profile-page {
    padding: 4rem 2rem;
    /* margin-top: 100px; */
    /* Offset from fixed header */
    text-align: center;
}

.cover-photo {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: #333;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: background 0.3s;
}

.cover-photo:hover {
    background-color: #444;
}

.cover-photo input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.cover-photo label {
    position: absolute;
    bottom: 10px;
    right: 10px;
    pointer-events: none;
    font-size: 1.2rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.profile-picture {
    position: absolute;
    bottom: -50px;
    left: 20px;
    /* Positioned to the left side */
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 5px solid #121212;
    /* Border to blend with the background */
}

.profile-picture:hover {
    background-color: #666;
    transform: scale(1.05);
}

.profile-picture input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.profile-picture label {
    pointer-events: none;
    font-size: 1.2rem;
    color: #fff;
}

.profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin-top: 60px; */
    /* Offset for profile picture */
}

.bio-section {
    width: 80%;
    max-width: 600px;
    text-align: left;
    margin-top: 2rem;
}

.bio-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ff6347;
    /* Tomato color */
    border-bottom: 2px solid #ff6347;
    padding-bottom: 0.5rem;
}

.bio-section textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 5px;
    background: #333;
    color: #fff;
    /* border: 1px solid #666; */
    margin-bottom: 1rem;
    resize: vertical;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.bio-section textarea:focus {
    border-color: #ff6347;
    /* Tomato color on focus */
    box-shadow: 0 0 10px rgba(255, 99, 71, 0.5);
}

.save-bio-btn {
    padding: 0.75rem 1.5rem;
    background-color: #ff6347;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.save-bio-btn:hover {
    background-color: #e5533d;
    /* Darker Tomato color on hover */
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 99, 71, 0.5);
}

.music-section {
    margin-top: 3rem;
}

.music-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #32cd32;
    /* Lime Green */
    border-bottom: 2px solid #32cd32;
    padding-bottom: 0.5rem;
}

.upload-music-btn {
    padding: 0.75rem 1.5rem;
    background-color: #32cd32;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    margin-bottom: 2rem;
}

.upload-music-btn:hover {
    background-color: #28a428;
    /* Darker Green color on hover */
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(50, 205, 50, 0.5);
}

.music-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    position: relative;
}

.no-projects {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #D1D1D1;
    font-size: 1.5rem;
    margin-top: 2rem;
}

.no-projects i {
    font-size: 3rem;
    color: #32cd32;
    /* Lime Green */
    margin-bottom: 1rem;
}

.music-gallery .music-item {
    background-color: #333;
    border-radius: 10px;
    padding: 1rem;
}

footer {
    background-color: rgba(0, 0, 0, 0.9);
    /* Semi-transparent black */
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    /* Light border at the top */
    color: #fff;
    /* White text */
}

footer .social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

footer .social-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

footer .social-links a:hover {
    color: #ff6347;
    /* Tomato color on hover */
    transform: scale(1.2);
}

footer .social-links a .icon {
    width: 30px;
    /* Size for the icons */
    height: 30px;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #D1D1D1;
    /* Light gray text */
}

footer {
    background-color: rgba(0, 0, 0, 0.9);
    /* Semi-transparent black */
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    /* Light border at the top */
    color: #fff;
    /* White text */
}

footer .social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

footer .social-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

footer .social-links a:hover {
    color: #ff6347;
    /* Tomato color on hover */
    transform: scale(1.2);
}

footer .social-links a .icon {
    width: 30px;
    /* Size for the icons */
    height: 30px;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #D1D1D1;
    /* Light gray text */
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: rgba(51, 51, 51, 0.9);
    /* Semi-transparent dark gray */
    padding: 0.5rem;
    border-radius: 30px;
    /* Rounded structure */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Subtle shadow */
    width: 500px;
    /* Adjusted width */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Light border */
    transition: box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.search-bar .search-icon {
    margin-right: 0.5rem;
    width: 24px;
    /* Size for the search icon */
    height: 24px;
    fill: #fff;
}

.search-bar input[type="text"] {
    background-color: transparent;
    /* Transparent background */
    border: none;
    color: #fff;
    padding: 0.5rem;
    width: 100%;
    /* Use available width */
    outline: none;
    border-radius: 0 30px 30px 0;
    /* Rounded right corners */
    transition: width 0.4s ease-in-out, background-color 0.3s ease-in-out;
}

.search-bar input[type="text"]::placeholder {
    color: #D1D1D1;
    /* Light Gray placeholder */
}

.search-bar:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    /* Enhanced shadow on hover */
    background-color: rgba(51, 51, 51, 1);
    /* Darker background on hover */
}

.customStyle {
    background: linear-gradient(135deg, #13171A 20%, #1F1E1F 60%, #181817 100%);
    background: linear-gradient(135deg, #13171A 20%, #1F1E1F 60%, #2c2c2c 100%);
}




.swiper-next-prv-buttons{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: #fff;
    color: #13171A;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s;
    font-size: 16px;
    z-index: 1000000000000 !important;
}

.swiper-next-prv-buttons:hover{
    background: #FF2C57;
    color: #fff;
}

.swiper-next-prv-buttons.swiper-button-prev{
    right: 0px;
}

.swiper-next-prv-buttons.swiper-button-next{
    right: 0;
}

.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
}