﻿/* ----------------------------
       Page Wrapper
    ---------------------------- */
.pagewrap {
    height: auto;
}



/* ----------------------------
       Creator Header
    ---------------------------- */
.creator-channel {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    font-family: "Segoe UI", Roboto, sans-serif;
    color: #fff;
}

.channel-header {
    background-color: #111;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    text-align: center;
}

    .channel-header .avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #0165b0;
        margin-bottom: 10px;
    }

    .channel-header h1 {
        font-size: 1.5em;
        font-weight: bold;
        color: white;
        margin: 5px 0;
    }

    .channel-header p {
        font-size: 12px;
        color: #ccc;
    }



/* ----------------------------
       Song Grid
    ---------------------------- */
/*
.song-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}
    */

/* 
.song-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #121212;
    border-radius: 12px;
    border: 8px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    text-align: left;
}
    */
/*
    .song-card:hover {
        border-color: rgba(128, 128, 128, 0.3);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
    */

/*
    .song-card img.album-art {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 8px;
        margin: 10px;
    }


    .song-card .song-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 10px;
        overflow: hidden;
    }

  
        .song-card .song-text h3 {
            margin: 0 0 5px 0;
            color: white;
            font-size: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .song-card .song-text p {
            margin: 0;
            color: #ccc;
            font-size: 12px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    */


/* ----------------------------
       Video Grid
    ---------------------------- */
/*
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 15px;
}
    */

/*
.video-card {
    background-color: #121212;
    border-radius: 12px;
    border: 8px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    text-align: center;
}

    .video-card:hover {
        border-color: rgba(128, 128, 128, 0.3);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }


    .video-card .video-content {
        padding: 10px;
    }

    .video-card img.thumbnail-image {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 8px 8px 0 0;
        display: block;
        margin: 0;
    }


    .video-card h3, .video-card p {
        margin: 5px 0 0 0;
        color: white;
        font-size: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    */

/* Subscribe button styling like LayoutButton */
.creator-channel .subscribe-button {
    color: #f4f4f4;
    background-color: #0165b0;
    border: 1px solid #0d83dd;
    font-size: 12px;
    border-radius: 3px;
    padding: 5px 15px;
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.2s ease;
    display: inline-block;
    margin: 10px 0;
}

    .creator-channel .subscribe-button:hover,
    .creator-channel .subscribe-button:focus,
    .creator-channel .subscribe-button:active {
        background-color: #0d83dd;
        color: #f4f4f4;
        text-decoration: none;
    }



/* =====================
       Buttons
       ===================== */
/*
    .LayoutButton {
        color: #f4f4f4;
        background-color: #0165b0;
        border-color: #0d83dd;
        font-size: 12px;
        border-radius: 3px;
        padding: 5px 15px;
        text-decoration: none;
        transition: background 0.3s ease;
    }

        .LayoutButton:hover {
            color: #fff;
            background-color: #0d83dd;
            border-color: #0165b0;
        }

    a.LayoutButton,
    a.LayoutButton:visited,
    a.LayoutButton:hover,
    a.LayoutButton:focus,
    a.LayoutButton:active {
        color: #f4f4f4;
        background-color: #0165b0;
        border-color: #0d83dd;
        text-decoration: none;
    }

        .LayoutButton:hover,
        a.LayoutButton:hover {
            color: #fff;
            background-color: #0d83dd;
            border-color: #0165b0;
            text-decoration: none;
        }
        */



/*Favorite Button*/

/*
.favorite-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 20px;
    padding: 4px 8px;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.1s ease;
}

    .favorite-btn:hover {
        background: #0165b0;
    }

    .favorite-btn.active {
        color: #ff4b6e;
        transform: scale(1.2);
    }
    */


/*Song Grid*/

.channel-filter-bar {
    display: flex;
    gap: 10px;
    margin: 10px 0 15px 0;
}

    .channel-filter-bar select {
        background: #121212;
        color: #fff;
        border: 1px solid #333;
        border-radius: 6px;
        padding: 6px 10px;
        font-size: 12px;
    }



/*Creator Bio*/

.creator-meta {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 12px;
    color: #aaa;
}

.creator-bio {
    margin-top: 10px;
    font-size: 13px;
    color: #ccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}





/*Overwrite cards.css*/

.card-grid {
    padding: 0px;
}

@media (max-width: 768px) {
    .card-grid {
        padding: 0px;
    }
}

