/* ==========================================
   Additional Styles for Results Display
   ========================================== */

/* Holland Test Result Styles */
.vncp-holland-result-content {
    animation: vncp-fadeIn 0.5s ease-in;
}

@keyframes vncp-fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.vncp-score-summary {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.vncp-score-summary h4 {
    color: #0073aa;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.vncp-scores-chart {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vncp-score-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.vncp-score-label {
    min-width: 40px;
    font-weight: 700;
    color: #0073aa;
    font-size: 16px;
}

.vncp-score-bar {
    flex: 1;
    height: 35px;
    background: #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.vncp-score-fill {
    height: 100%;
    background: linear-gradient(90deg, #0073aa 0%, #00a0d2 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    transition: width 1s ease-out;
    min-width: 45px;
}

.vncp-result-descriptions {
    margin-top: 30px;
}

.vncp-result-descriptions h4 {
    color: #0073aa;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.vncp-type-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 5px solid #0073aa;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.vncp-type-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,115,170,0.15);
}

.vncp-type-card.rank-1 {
    border-left-color: #27ae60;
    background: linear-gradient(to right, rgba(39,174,96,0.05) 0%, #fff 100%);
}

.vncp-type-card.rank-2 {
    border-left-color: #3498db;
    background: linear-gradient(to right, rgba(52,152,219,0.05) 0%, #fff 100%);
}

.vncp-type-card.rank-3 {
    border-left-color: #f39c12;
    background: linear-gradient(to right, rgba(243,156,18,0.05) 0%, #fff 100%);
}

.vncp-type-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.vncp-type-rank {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
}

.vncp-type-card.rank-1 .vncp-type-rank {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
}

.vncp-type-card.rank-2 .vncp-type-rank {
    background: linear-gradient(135deg, #3498db 0%, #2874a6 100%);
}

.vncp-type-card.rank-3 .vncp-type-rank {
    background: linear-gradient(135deg, #f39c12 0%, #d68910 100%);
}

.vncp-type-header h5 {
    flex: 1;
    font-size: 20px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.vncp-type-score {
    background: #0073aa;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.vncp-type-description {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.vncp-careers,
.vncp-majors {
    margin-bottom: 15px;
}

.vncp-careers strong,
.vncp-majors strong {
    color: #333;
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
}

.vncp-career-badge,
.vncp-major-badge {
    display: inline-block;
    background: #e7f3f8;
    color: #0073aa;
    padding: 6px 14px;
    border-radius: 20px;
    margin: 5px 5px 5px 0;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #c5e4f2;
    transition: all 0.2s ease;
}

.vncp-career-badge:hover,
.vncp-major-badge:hover {
    background: #0073aa;
    color: #fff;
    transform: translateY(-2px);
}

/* Calculator Result Styles */
.vncp-calculator-result-content {
    animation: vncp-fadeIn 0.5s ease-in;
}

.vncp-score-details {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.vncp-score-details h4 {
    color: #0073aa;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.vncp-score-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vncp-score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 3px solid #ddd;
}

.vncp-score-item span {
    color: #666;
    font-size: 15px;
}

.vncp-score-item strong {
    color: #333;
    font-size: 16px;
}

.vncp-final-score {
    background: linear-gradient(135deg, #e7f3f8 0%, #c5e4f2 100%);
    border-left-color: #0073aa;
    border-width: 4px;
}

.vncp-final-score span {
    font-weight: 600;
    color: #0073aa;
    font-size: 17px;
}

.vncp-final-score strong {
    font-size: 22px;
    color: #0073aa;
}

.vncp-suitable-universities {
    margin-top: 30px;
}

.vncp-suitable-universities h4 {
    color: #0073aa;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.vncp-uni-result-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 5px solid #ddd;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.vncp-uni-result-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.vncp-uni-result-card.vncp-status-high {
    border-left-color: #27ae60;
    background: linear-gradient(to right, rgba(39,174,96,0.05) 0%, #fff 100%);
}

.vncp-uni-result-card.vncp-status-good {
    border-left-color: #3498db;
    background: linear-gradient(to right, rgba(52,152,219,0.05) 0%, #fff 100%);
}

.vncp-uni-result-card.vncp-status-medium {
    border-left-color: #f39c12;
    background: linear-gradient(to right, rgba(243,156,18,0.05) 0%, #fff 100%);
}

.vncp-uni-result-card.vncp-status-low {
    border-left-color: #e74c3c;
    background: linear-gradient(to right, rgba(231,76,60,0.05) 0%, #fff 100%);
}

.vncp-uni-result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.vncp-uni-result-header h5 {
    color: #0073aa;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.vncp-major-name-result {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.vncp-uni-result-details {
    display: grid;
    gap: 12px;
}

.vncp-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f9f9f9;
    border-radius: 6px;
}

.vncp-result-row span {
    color: #666;
    font-size: 14px;
}

.vncp-result-row strong {
    color: #333;
    font-size: 15px;
    font-weight: 600;
}

.vncp-your-score {
    color: #0073aa !important;
}

.vncp-positive {
    color: #27ae60 !important;
}

.vncp-negative {
    color: #e74c3c !important;
}

.vncp-status-description {
    margin-top: 15px;
    padding: 12px 15px;
    background: rgba(0,115,170,0.05);
    border-radius: 6px;
    color: #666;
    font-size: 14px;
    font-style: italic;
    border-left: 3px solid #0073aa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vncp-type-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .vncp-score-bar-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .vncp-uni-result-header {
        flex-direction: column;
    }

    .vncp-result-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
