/* Rating Form Basic Styling */
#ratingForm {
    max-width: 700px;
    margin: auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
#ratingForm input[type="text"],
#ratingForm input[type="email"],
#ratingForm input[type="number"] {
    width: 100%;
    padding: 8px 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.wpra-step {
    display: none;
}

.wpra-next, #ratingForm input[type="submit"] {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    margin-top: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.wpra-next:hover, #ratingForm input[type="submit"]:hover {
    background-color: #005c87;
}

#wpra-results {
    max-width: 700px;
    margin: 40px auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    display: none;
}

.wpra-result-set, .wpra-result-overall {
    margin-bottom: 25px;
}

.wpra-bar {
    background-color: #e9ecef;
    border-radius: 8px;
    height: 30px;
    overflow: hidden;
    position: relative;
    margin-top: 5px;
}

.wpra-fill {
    background: linear-gradient(90deg, #28a745, #20c997);
    height: 100%;
    color: #fff;
    line-height: 30px;
    padding-left: 10px;
    font-weight: bold;
    border-radius: 8px 0 0 8px;
}

.wpra-bar.overall .wpra-fill {
    background: linear-gradient(90deg, #007bff, #6610f2);
}
.wpra-result-set img,
.wpra-result-overall img {
    width: 100%;
    max-width: 600px;
    margin: 15px 0;
    border: 1px solid #ccc;
    border-radius: 10px;
}
/* Gauge Chart Styles */
.wpra-gauge-result {
    background: white;
    padding: 20px;
    margin: 0 auto 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    max-width: 700px;
}

.wpra-gauge-result h3 {
    font-size: 18px;
    color: #333;
    text-align: center;
    margin: 0 0 15px;
    font-weight: 600;
}

.wpra-gauge-container {
    margin: 20px 0;
}

.wpra-gauge-bar {
    height: 12px;
    background: #f0f0f0;
    border-radius: 6px;
    position: relative;
    display: flex;
    overflow: hidden;
}

.wpra-segment {
    height: 100%;
}
.wpra-segment.beginner { width: 40%; background: #e74c3c; }
.wpra-segment.intermediate { width: 20%; background: #f39c12; }
.wpra-segment.advanced { width: 20%; background: #2ecc71; }
.wpra-segment.elite { width: 20%; background: #3498db; }

.wpra-marker {
    position: absolute;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #000;
    transform: translateX(-50%);
}

.wpra-score-label {
    text-align: center;
    font-weight: bold;
    margin: 15px 0;
    font-size: 14px;
}

.wpra-level-labels {
    display: flex;
    justify-content: space-between;
    margin: 15px 0 5px;
    font-size: 12px;
}

.wpra-scale {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #777;
}

.wpra-overall {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
}