/* impulse-purchase-justifier.css */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.app-container {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #c98dda 0%, #6f3ea1 100%);
    backdrop-filter: blur(8px);
}

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

.input-group {
    margin-bottom: 25px;
}

.input-label {
    color: #555;
}

.input-field {
    border: 2px solid #e1e5e9;
    background-color: #f8f9fa;
}

.input-field:focus {
    outline: none;
    border-color: #667eea;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-field.clicked {
    background-color: white;
}

textarea.input-field {
}

.justify-btn {
    background: linear-gradient(135deg, #be66ea 0%, #834cbb 50%, #6c34a7 100%);
}

.justify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(102, 126, 234, 0.3);
}

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

.result-section {
    margin-top: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    display: none;
}

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

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

.verdict {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2c3e50;
}

.justification {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
}