/* Emotion Wheel Styles */
.emotion-wheel-container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.emotion-wheel {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: 0 auto;
}

.emotion-segment {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.emotion-segment:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.emotion-segment.selected {
    transform: scale(1.15);
    border: 3px solid #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    z-index: 15;
}

/* Position emotions around the circle */
.emotion-segment.joy {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
}

.emotion-segment.trust {
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #10b981, #34d399);
}

.emotion-segment.fear {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #6b46c1, #8b5cf6);
}

.emotion-segment.surprise {
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #333;
}

.emotion-segment.sadness {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.emotion-segment.disgust {
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #059669, #10b981);
}

.emotion-segment.anger {
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.emotion-segment.anticipation {
    top: 30px;
    left: 30px;
    background: linear-gradient(135deg, #ea580c, #fb923c);
}

.emotion-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #374151, #4b5563);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #6b7280;
    color: #f3f4f6;
    z-index: 5;
}

.emotion-center-text {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.secondary-emotions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.secondary-emotion-btn {
    transition: all 0.2s ease;
}

.secondary-emotion-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive design */
@media (max-width: 576px) {
    .emotion-wheel {
        width: 250px;
        height: 250px;
    }
    
    .emotion-segment {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
    }
    
    .emotion-center {
        width: 100px;
        height: 100px;
    }
    
    .emotion-center-text {
        font-size: 0.8rem;
    }
}