
/* food-opinion-judge.css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.app-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    backdrop-filter: blur(8px);
}

.app-header {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
}

.app-title {
    font-weight: bold;
}

.app-subtitle {
}

.app-description {
    line-height: 1.5;
}

.input-label {
    color: #495057;
}

.opinion-input {
    border: 2px solid #e9ecef;
}

.opinion-input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.opinion-input.placeholder {
    color: #6c757d;
    font-style: italic;
}

.judge-btn {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.judge-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.judge-btn:active {
    transform: translateY(0);
}

.result-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ff6b6b;
    display: none;
}

.result-section.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.intensity-meter {
    margin: 1rem 0;
}

.meter-bar {
    height: 20px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #ffc107, #fd7e14, #dc3545);
    border-radius: 10px;
    transition: width 1s ease;
    width: 0%;
}

.meter-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: #6c757d;
}