/* fitneess excuse rater css */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

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

.app-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.app-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.input-label {
    color: #2c3e50;
}

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

.excuse-input::placeholder {
    color: #adb5bd;
}

.rate-button {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    min-width: 200px;
}

.rate-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.rate-button:active {
    transform: translateY(0);
}

.rate-button:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.result-section {
    margin-top: 30px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    border-left: 5px solid #ff6b6b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: none;
}

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

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

.result-score {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.result-verdict {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.result-explanation {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    text-align: center;
}
