/* Rating Skeleton Loader */
.rating-skeleton-loader {
    padding: 16px 20px;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}

/* Skeleton shimmer base - applied to all skeleton elements */
.skeleton-element {
    background: linear-gradient(90deg, #e9e9e9 0%, #f4f4f4 50%, #e9e9e9 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: 4px;
}

/* Header section - Title on left, stats on right */
.rating-skeleton-loader .skeleton-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
}

.rating-skeleton-loader .skeleton-title-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.rating-skeleton-loader .skeleton-title {
    height: 20px;
    width: 60%;
}

.rating-skeleton-loader .skeleton-checkbox {
    height: 14px;
    width: 40%;
}

.rating-skeleton-loader .skeleton-stats-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
    margin-left: 20px;
}

.rating-skeleton-loader .skeleton-stat-row {
    height: 16px;
    width: 100px;
}

.rating-skeleton-loader .skeleton-stat-row.large {
    height: 18px;
    width: 110px;
}

/* Dropdown filter */
.rating-skeleton-loader .skeleton-dropdown {
    height: 40px;
    width: 100%;
    margin: 16px 0;
    border-radius: 10px;
}

/* Rating rows */
.rating-skeleton-loader .skeleton-ratings {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.rating-skeleton-loader .skeleton-rating-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.rating-skeleton-loader .skeleton-rating-label {
    height: 14px;
    width: 30%;
}

.rating-skeleton-loader .skeleton-rating-bar {
    height: 20px;
    width: 100%;
    border-radius: 4px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Rating container border - applied at page level */
.rating-container-border {
    border: 1px solid #E4E3E1;
    border-radius: 8px;
    background: #fff;
}

.borderdiv {
    border: 1px solid #E4E3E1;
    border-radius: 8px;
}

.bodyTextColor {
    color: var(--bodyTextColor) !important;
}

.borderbottomdiv {
    border-bottom: 1px solid #E4E3E1;
}

.buttonColor {
    color: var(--buttonColor) !important;
}

.buttonBackgroundColor {
    color: var(--ratingUnFilledColor) !important;
}

.buttonBackgroundHalfColor {
    color: var(--buttonColor) !important;
    --fa-secondary-color: var(--buttonBackgroundColor) !important;
}

.memberVerifyCardCustom {
    position: absolute;
    z-index: 999;
    width: 435px;
}

@media (max-width: 775px) {
    .memberVerifyCardCustom {
        width: 180px;
    }
}

.rating-lock-style {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media (min-width: 1366px) {
    .rating-lock-style .iconMain i {
        top: unset;
    }
}

.ratingUnFilledColor {
    font-size: 16px;
    color: var(--ratingUnFilledColor) !important;
}

.ratingFilledColor {
    color: var(--ratingFilledColor) !important;
}

.ratingHalfColor {
    color: var(--ratingFilledColor) !important;
    --fa-secondary-color: var(--ratingUnFilledColor) !important;
}
.custom-rating-flex-container {
    display: flex;
    align-items: center;
    justify-self: flex-start;
    gap: 5px;
    position: relative;
}