.prm-wrapper-main {
        max-width: 750px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 50px;
}

.prm-header-section {
    background: #4bbc39;
    color: white;
    padding: 20px;
    text-align: center;
}

.prm-header-section h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.prm-header-section p {
    font-size: 14px;
    opacity: 0.9;
}

.prm-form-container {
    padding: 30px;
}

.prm-input-group {
    margin-bottom: 20px;
}

.prm-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.prm-input-group input,
.prm-input-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.prm-input-group input:focus,
.prm-input-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.prm-input-group textarea {
    resize: vertical;
    min-height: 100px;
}

.prm-rating-wrapper {
    margin-bottom: 25px;
}

.prm-rating-wrapper label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
}

.prm-stars-container {
    display: flex;
    gap: 8px;
    font-size: 32px;
}

.prm-star-icon {
    cursor: pointer;
    color: #ddd;
    transition: color 0.2s, transform 0.2s;
}

.prm-star-icon:hover {
    transform: scale(1.2);
}

.prm-submit-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.prm-submit-button.loading::after {
    content: "";
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-right: 2px solid white;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}


.prm-star-icon.prm-star-selected {
    color: #ffc107;
}

.prm-submit-button {
    width: 100%;
    padding: 14px;
    background: #4bbc39;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.prm-submit-button:hover {
    background: #2980b9;
}

.prm-submit-button:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.prm-reviews-section {
    padding: 30px;
    background: #fafafa;
}

.prm-reviews-section h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.prm-review-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.prm-review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.prm-reviewer-name {
    font-weight: 600;
    color: #2c3e50;
}

.prm-review-stars-display {
    color: #ffc107;
}

.prm-review-timestamp {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 5px;
}

.prm-review-text {
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
}

.prm-empty-state {
    text-align: center;
    color: #7f8c8d;
    padding: 40px;
    font-style: italic;
}

.prm-rating-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.prm-rating-text {
    font-size: 14px;
    color: #7f8c8d;
}

.prm-form-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.prm-form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.prm-form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


@media (max-width: 600px) {
    .prm-form-container {
        padding: 20px;
    }

    .prm-reviews-section {
        padding: 20px;
    }
}