/* Text Overthinking Engine CSS */

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

.app-container {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.text-input {
    background: #fff;
}

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

.text-input.placeholder-text {
    color: #999;
    font-style: italic;
}

.analyze-btn {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.analyze-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

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

.results-section {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: none;
}

.results-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 10px;
}

.interpretation {
    background: #fff5f5;
    border-left: 4px solid #ff6b6b;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
}

.interpretation-title {
    font-weight: bold;
    color: #c53030;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.interpretation-text {
    color: #2d3748;
    line-height: 1.6;
}

/* Loading Animation */
.loading {
    text-align: center;
    padding: 20px;
}

.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ff6b6b;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}