/* Manipulation Tactics Identifier 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 {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 0;
}

.app-header {
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    box-shadow: 0 5px 15px 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: #495057;
}

textarea {
    border: 2px solid #dee2e6;
    transition: border-color 0.3s ease;
    background: white;
    height: 120px;
    margin-bottom: 2rem;
}

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

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

.analyze-btn {
    background: linear-gradient(135deg, #ff9a9e 0%, #ff6b6b 100%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 2.5rem;
}

.analyze-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

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

.results-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    display: none;
}

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

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

.results-section h3 {
    color: #28a745;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.result-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #6c757d;
}

.result-item h4 {
    color: #495057;
    margin-bottom: 0.5rem;
}

.result-item p {
    color: #6c757d;
    line-height: 1.5;
}

.manipulation-warning {
    border-left-color: #dc3545;
    background: #fff5f5;
}

.manipulation-warning h4 {
    color: #dc3545;
}

.persuasion-positive {
    border-left-color: #28a745;
    background: #f8fff9;
}

.persuasion-positive h4 {
    color: #28a745;
}

/* Mobile styles (480px and below) */
@media screen and (max-width: 480px) {
    textarea {
        height: 125px;
    }
}