.ffd-reviews-main-wrapper {
    padding: 15px 0px 0 30px;
    border: 1px solid #eeeeee;
    border-radius: 5px;    
}

/* Scrollable Container */
.ffd-reviews-scrollable {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 15px;
}

/* Individual Review Card */
.ffd-review-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Header Layout */
.ffd-review-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* Review Date alignment */
.ffd-review-date {
    margin-left: auto;
    font-size: 0.85em;
    color: #6b7280;
}

/* Visual Stars */
.ffd-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.ffd-star {
    flex-shrink: 0;
}

/* Accessibility: Hide screen reader text visually */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Load More Button Styles */
.ffd-load-more-container {
    text-align: center;
    padding: 10px 0 20px 0;
}

.ffd-load-more-btn {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.ffd-load-more-btn:hover {
    background-color: #1d4ed8;
}

.ffd-load-more-btn:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}