.urc-wrapper {
    max-width: 1200px; margin: 40px auto; font-family: sans-serif; position: relative;
}
.urc-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;
}
.urc-success-msg {
    background: #d4edda; color: #155724; padding: 15px; margin-bottom: 20px; border-radius: 5px; border: 1px solid #c3e6cb;
}
/* Cards */
.urc-review-card {
    background: #fff; border: 1px solid #e1e1e1; border-radius: 8px; padding: 20px;
    height: auto; min-height: 250px; display: flex; flex-direction: column;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.urc-card-header {
    display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14px;
}
.urc-author-name { font-weight: bold; color: #333; display: block;}
.urc-badge-verified { background: #d4edda; color: #155724; padding: 2px 6px; border-radius: 4px; font-size: 10px; margin-top: 2px; display: inline-block; }
.urc-date { color: #999; font-size: 12px; }
.urc-stars { display: inline-block; color: #f39c12; font-size: 18px; }
.urc-score { font-weight: bold; margin-left: 5px; color: #555; }
.urc-review-content { color: #555; line-height: 1.6; margin-top: 10px; flex-grow: 1; }
.urc-admin-reply { margin-top: 15px; background: #f8f9fa; padding: 10px; border-left: 3px solid #0073aa; font-size: 13px; color: #444; }

/* Botones */
.urc-btn-primary { background: #0073aa; color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; }
.urc-btn-submit { background: #28a745; color: white; border: none; padding: 12px; width: 100%; border-radius: 5px; cursor: pointer; font-size: 16px; margin-top: 10px; }

/* Modal */
.urc-modal {
    position: fixed; z-index: 99999; left: 0; top: 0; width: 100%; height: 100%; overflow: auto;
    background-color: rgba(0,0,0,0.5); display: none; align-items: center; justify-content: center;
}
.urc-modal-content {
    background-color: #fefefe; padding: 25px; border: 1px solid #888;
    width: 90%; max-width: 500px; border-radius: 8px; position: relative;
}
.urc-close-modal {
    color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; position: absolute; right: 15px; top: 10px;
}
.urc-form-group { margin-bottom: 15px; }
.urc-form-group input, .urc-form-group textarea, .urc-form-group select {
    width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; box-sizing: border-box;
}
.urc-criteria-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 15px;
}
.urc-criteria-grid label { font-size: 12px; font-weight: bold; display: block; margin-bottom: 3px; }