body {
    font-family: "Preahvihear", sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
}

header {
    background: #1db954;
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1.5rem;
}

.dashboard-feed {
    max-width: 600px;
    margin: auto;
    padding: 1rem;
}

.post-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.post-header {
    display: flex;
    align-items: center;
    padding: 1rem;
}

.artist-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.artist-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.post-video iframe {
    width: 100%;
    height: 152px;
    border: none;
}

.post-actions {
    padding: 1rem;
    text-align: center;
}

.lyrics-btn {
    background: #ad6a40;
    color: white;
    text-decoration: none;
    padding: 0.6rem 2.2rem;
    border-radius: 999px;
    font-weight: bold;
}

.mood-bar {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
    position: sticky;
    bottom: 0;
    border-top: 1px solid #ccc;
    border-radius: 12px;
}

.mood-bar.happy {
    background-color: #f1c40f;
}

.mood-bar.sad {
    background-color: #587a9b;
}

.mood-bar.chill {
    background-color: #1abc9c;
}

.mood-bar.angry {
    background-color: #c0392b;
}

.mood-bar.love {
    background-color: #e84393;
}

.mood-bar.hype {
    background-color: #8e44ad;
}

.mood-list button {
    font-size: 1.3rem;
    background: transparent;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    transition: transform 0.2s;
}

.mood-list button:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .mood-bar {
        max-width: none;     
        margin-left: 10px;    
        margin-right: 10px; 
    }
}