/*
Dashboard SR
 */
.service-request-summary-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 16px 32px;
    /*box-shadow: 0 2px 18px rgba(0,0,0,0.05);*/
    /*border: 1px solid var(--border-color);*/
    /*border-radius: var(--border-radius-small);*/
    border-bottom: 1px solid var(--border-color);
}
.service-request-summary-container.no-b {
    border: none;
}
.sr-avatar {
    flex-shrink: 0;
}
.sr-meta {
    position: relative;
    margin-left: 30px;
    width: 100%;
    .sr-sc {
        position: absolute;
        top: 0;
        right: 0;
    }
}
.sr-details {
    margin-bottom: 16px;
}
@media (max-width: 992px) {
    .service-request-summary-container {
        flex-direction: column;
        padding: 10px 0;
    }
    .sr-meta {
        margin-left: 0 !important;
        margin-top: 20px;
        .sr-sc {
            top: -50px;
        }
    }
    .sr-footer {
        flex-wrap: wrap;
    }
}
.service-category-color-code {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    margin: 0 8px;
    flex-grow: 0;
    flex-shrink: 1;
}
.availability-day {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 3px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    text-align: center;
    margin-right: 4px;
    align-items: center;
    justify-content: center;
    opacity: 0.2;
}
.availability-day.active {
    opacity: 1;
}
/* Rating */
.star-wrapper {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: lightgray; /* Color for the empty stars */
}

.star-inner {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: gold; /* Color for the filled stars */
}

.members-progress-container {
    background-color: var(--gray-light);
    height: 8px;
    border-radius: 5px;
    overflow: hidden;
}

.members-progress {
    height: 100%;
    border-radius: 5px;
}

.signup-product-selector {
    border-radius: var(--border-radius-small);
    padding: 26px 34px 30px 34px;
    background-color: white;
    border: 1px solid transparent;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    cursor: pointer;
 }
.signup-product-selector.selected {
    border: 1px solid var(--text-color-dark);
}

.signup-product-feature {
    display: flex;
    justify-content: space-between;
    font-size: max(0.9em, 14px);
    margin-bottom: .55rem;
    padding-bottom: 0.55rem;

}
.signup-product-feature:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

/*
Site wide
 */
.sr-button:hover, .attention-required:hover {
    color: white !important;
}

.profile-card-block-attention {
    border: 1px solid var(--accent-color);
}

.attention-required {
    position: absolute;
    padding: 0.35rem 1rem;
    background-color: var(--accent-color);
    color: white;
    font-weight: 500;
    top: -30px;
    left: 20px;
    border-radius: 0 10px;
}
.attention-required:hover {
    background-color: #da4b71;
}

.free-trial-block {
    background-color: #fafafa;
    padding: 16px;
    border-radius: 15px;
    border: 1px dashed #ccc;
    margin-bottom: 20px;
}
