.thiasos-mood-widget {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.mood-header h3 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 18px;
}

.mood-header p {
    margin: 0 0 20px 0;
    color: #7f8c8d;
    font-size: 14px;
}

.emoji-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.emoji-option {
    cursor: pointer;
}

.emoji-option input[type="radio"] {
    display: none;
}

.emoji-option .emoji {
    display: inline-block;
    font-size: 28px;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.emoji-option .emoji:hover {
    transform: scale(1.2);
    background: rgba(52, 152, 219, 0.1);
}

.emoji-option input[type="radio"]:checked + .emoji {
    border-color: #3498db;
    background: rgba(52, 152, 219, 0.1);
    transform: scale(1.1);
}

.mood-text-input {
    margin-bottom: 15px;
}

.mood-text-input input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.mood-text-input small {
    color: #7f8c8d;
    font-size: 12px;
}

.mood-visibility {
    margin-bottom: 20px;
}

.mood-visibility select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.mood-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-link {
    background: none;
    color: #3498db;
    padding: 5px 10px;
}

.current-mood {
    text-align: center;
    padding: 20px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
}

.mood-display {
    margin: 15px 0;
}

.mood-display .mood-emoji {
    font-size: 36px;
    margin-right: 10px;
}

.mood-display .mood-text {
    font-style: italic;
    color: #2c3e50;
}

.mood-message {
    padding: 10px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 14px;
}

.mood-message.success {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border: 1px solid #27ae60;
}

.mood-message.error {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

/* Mood Wall Styles */
.thiasos-mood-wall {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mood-wall-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ecf0f1;
}

.mood-wall-header h2 {
    margin: 0 0 10px 0;
    color: #2c3e50;
}

.mood-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mood-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.mood-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mood-content .mood-emoji {
    font-size: 32px;
}

.mood-info strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
}

.mood-info .mood-text {
    color: #7f8c8d;
    font-style: italic;
}

.mood-info .mood-time {
    display: block;
    color: #bdc3c7;
    font-size: 12px;
    margin-top: 5px;
}

.mood-actions {
    display: flex;
    gap: 10px;
}

.send-wave-btn, .support-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.send-wave-btn {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
}

.send-wave-btn:hover {
    background: #9b59b6;
    color: white;
}

.support-btn {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.support-btn:hover {
    background: #e74c3c;
    color: white;
}

.support-dropdown {
    position: relative;
}

.support-messages {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 200px;
    display: none;
}

.support-messages.show {
    display: block;
}

.support-message-btn {
    display: block;
    width: 100%;
    padding: 10px 15px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    font-size: 13px;
    color: #2c3e50;
    transition: background 0.3s ease;
}

.support-message-btn:hover {
    background: rgba(52, 152, 219, 0.1);
}

.no-moods {
    text-align: center;
    padding: 40px 20px;
    color: #7f8c8d;
}

/* Responsive */
@media (max-width: 768px) {
    .emoji-selection {
        justify-content: center;
    }
    
    .emoji-option .emoji {
        font-size: 24px;
        padding: 6px;
    }
    
    .mood-item {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .mood-actions {
        align-self: stretch;
        justify-content: space-between;
    }
}
