/* body in script.css for home page is the main style, so we don't need to repeat some styles here */

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

.app-container {
    background: linear-gradient(135deg, #c850f1, #f48f50);
    backdrop-filter: blur(8px);
}

.app-title {
    color: #4f46e5;
}

.app-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f7f3f3;
}

.app-description {
    opacity: 0.8;
}

.input-section {
}

.input-label {
    color: #4f46e5;
}

.thought-input {/* textarea for user input */
    min-height: 120px;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.thought-input:focus {
    outline: none;
    border-color: #4f46e5;
    background: white;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.thought-input.placeholder-active {
    color: #9ca3af;
    font-style: italic;
}

.analyze-btn {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    /*display: block;
    margin: 0 auto;
    min-width: 160px;*/
}

.analyze-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

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

.analyze-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.results-section {
    margin-top: 30px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 5px solid #4f46e5;
    display: none;
}

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

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

.rating-display {
    text-align: center;
    margin-bottom: 20px;
}

.rating-number {
    font-size: 3rem;
    font-weight: bold;
    color: #4f46e5;
    margin-bottom: 10px;
}

.rating-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.analysis-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

.app-footer {
    background: #6562e1;
}