.data-grid-view {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .data-grid-view {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.data-list-view {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.data-view-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
}

.data-view-item-body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: center;
}

.data-view-item-footer {
    margin-top: 1rem;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-star-btn {
    border: 0;
    background: transparent;
    color: #cbd5f5;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 120ms ease-in-out;
}

    .rating-star-btn.is-active {
        color: #EF5151;
    }

.rating-stars.is-hover .rating-star-btn.is-active {
    color: #f59e0b;
}

.rating-stars.is-locked .rating-star-btn {
    cursor: default;
    opacity: 0.7;
}

#comment-modal .aegov-modal-wrapper {
    background: #f3f4f6;
    border-radius: 1rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

#comment-modal .comment-form input,
#comment-modal .comment-form textarea {
    background: #ffffff;
    border: 2px solid #1f3a5f;
    border-radius: 0.5rem;
}
