    /* --- 1. Star Rating Display --- */
.album-rating {
    background: #fdfdfd;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.album-rating .stars {
    color: #ffc107; /* Bright Gold */
    font-size: 22px;
    letter-spacing: 2px;
}
.album-rating .stars span {
    color: #666;
    font-size: 13px;
    letter-spacing: normal;
    margin-left: 8px;
    vertical-align: middle;
    font-weight: 500;
}

/* --- 2. Yes/No Voting Buttons --- */
.works-for-you {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    margin-bottom: 25px;
    flex-wrap: wrap; /* Keeps it responsive on mobile */
}
.works-for-you span {
    font-weight: 600;
    color: #333;
}
.vote-btn {
    padding: 6px 16px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}
.vote-btn-yes {
    background-color: #e8f5e9;
    color: #2e7d32; /* Green text */
}
.vote-btn-yes:hover:not([disabled]) {
    background-color: #c8e6c9;
}
.vote-btn-no {
    background-color: #ffebee;
    color: #c62828; /* Red text */
}
.vote-btn-no:hover:not([disabled]) {
    background-color: #ffcdd2;
}
.vote-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* --- 3. Review Form --- */
.review-form-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    margin: 30px 0;
}
.review-form-container h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}
.review-form-container label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
    margin-bottom: 5px;
    display: inline-block;
}
.review-form-container select,
.review-form-container input[type="text"],
.review-form-container textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 15px;
    font-family: inherit;
    box-sizing: border-box; /* Keeps it inside the container */
    transition: border-color 0.2s ease;
}
.review-form-container select:focus,
.review-form-container input[type="text"]:focus,
.review-form-container textarea:focus {
    outline: none;
    border-color: #007bff; /* Blue focus ring */
}
#submitReviewBtn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    width: 100%; /* Full width button for better mobile clicking */
    transition: background-color 0.2s;
}
#submitReviewBtn:hover {
    background-color: #0056b3;
}

/* --- 4. User Comments List --- */
.user-comments {
    margin-top: 30px;
}
.user-comments h3 {
    font-size: 1.3rem;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.review-box {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.review-author {
    font-weight: 700;
    color: #222;
    font-size: 15px;
}
.review-date {
    font-size: 12px;
    color: #888;
}
.review-text {
    color: #444;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

    /* --- Breadcrumbs & Last Modified --- */
    .breadcrumbs {
        font-size: 14px;
        margin-bottom: 8px;
        color: #555;
    }
    .breadcrumbs a {
        color: #007bff;
        text-decoration: none;
        transition: color 0.2s;
    }
    .breadcrumbs a:hover {
        text-decoration: underline;
        color: #0056b3;
    }
    .breadcrumbs span {
        color: #333;
        font-weight: 600;
    }
    .last-modified {
        font-size: 12px;
        color: #777;
        margin-bottom: 20px;
        font-style: italic;
    }
