.uni-choice-robot-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.ucr-form-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 40px;
}

.ucr-form-wrapper h2 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 28px;
}

.ucr-form-wrapper > p {
    color: #7f8c8d;
    margin-bottom: 30px;
}

.ucr-form-group {
    margin-bottom: 20px;
}

.ucr-form-group label {
    display: block;
    font-weight: 700;
    font-size: 18px;
}

.ucr-suggestion-content {
    flex: 1;
}

.ucr-suggestion-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
    gap: 10px;
}

.ucr-suggestion-header h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 18px;
    flex: 1;
}

.ucr-match-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.ucr-badge-güvende {
    background: #d4edda;
    color: #155724;
}

.ucr-badge-şanslı {
    background: #fff3cd;
    color: #856404;
}

.ucr-badge-riskli {
    background: #f8d7da;
    color: #721c24;
}

.ucr-uni-name {
    color: #34495e;
    margin: 0 0 12px 0;
    font-size: 15px;
}

.ucr-suggestion-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.ucr-detail-item {
    font-size: 14px;
    color: #7f8c8d;
}

.ucr-back-btn {
    margin-top: 30px;
    width: 100%;
    background: #95a5a6;
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ucr-back-btn:hover {
    background: #7f8c8d;
}

/* Responsive */
@media (max-width: 768px) {
    .ucr-form-wrapper {
        padding: 25px;
    }
    
    .ucr-suggestion-item {
        flex-direction: column;
    }
    
    .ucr-suggestion-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .ucr-suggestion-details {
        flex-direction: column;
        gap: 8px;
    }
} 600;
    margin-bottom: 8px;
    color: #34495e;
}

.ucr-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.ucr-form-group input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.ucr-form-group small {
    display: block;
    margin-top: 5px;
    color: #95a5a6;
    font-size: 13px;
}

.ucr-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ucr-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.ucr-btn-icon {
    font-size: 24px;
}

#ucr-loading {
    text-align: center;
    padding: 60px 20px;
}

.ucr-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#ucr-results {
    margin-top: 30px;
}

#ucr-results h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.ucr-user-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.ucr-user-info h4 {
    margin: 0 0 10px 0;
    font-size: 22px;
}

.ucr-user-info p {
    margin: 0;
    opacity: 0.9;
}

.ucr-suggestions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ucr-suggestion-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    background: #fff;
}

.ucr-suggestion-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.ucr-match-güvende {
    border-left: 5px solid #27ae60;
}

.ucr-match-şanslı {
    border-left: 5px solid #f39c12;
}

.ucr-match-riskli {
    border-left: 5px solid #e74c3c;
}

.ucr-suggestion-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: