/* Self-Sabotage Analyzer css */

body {
    font-family: 'Arial', sans-serif;
}

main {
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.app-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.app-header {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

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

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

label {
    color: #2c3e50;
}

textarea {
    border: 2px solid #ddd;
    background: #f8f9fa;
}

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

.analyze-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.analyze-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

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

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

.results-section.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.result-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.result-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

@media screen and (max-width: 480px) {
    .analyze-btn {
        font-size: 15px;
    }
}