/* =====================
   Suggestion Container
   ===================== */
   .suggestion-container {
    position: relative;
    margin: 2rem 0;
    background: #1E1E2F;
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid #2D2D42;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==============
   Input Label
   ============== */
.input-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #E0E0FF;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    border-left: 3px solid #6366F1;
}

/* =================
   Suggestion Input
   ================= */
.suggestion-input {
    width: 100%;
    min-height: 120px;
    max-height: 300px;
    padding: 1.25rem;
    background: #2D2D42;
    border: 2px solid transparent;
    border-radius: 8px;
    color: #E0E0FF;
    font-size: 0.95rem;
    line-height: 1.6;
    resize: vertical;
    transition: height 0.3s ease, box-shadow 0.3s ease;
    will-change: height;
    overflow-y: auto;
    
    &::placeholder {
        color: #6D6D8F;
        font-style: italic;
        transition: opacity 0.3s ease;
    }
    
    &:focus {
        outline: none;
        border-color: #6366F1;
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
        
        &::placeholder {
            opacity: 0.5;
        }
    }
}

/* =====================
   Suggestion Controls
   ===================== */
.suggestion-controls {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.5rem;
}

/* ==============
   Action Buttons
   ============== */
.suggestion-controls .action-button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    
    & i {
        font-size: 1em;
        transition: transform 0.3s ease;
    }
    
    &:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
        
        & i {
            transform: scale(1.1);
        }
    }
    
    &:active {
        transform: translateY(1px);
    }
}

/* Botón de Sugerir */
button[name="action"][value="get_suggestion"] {
    background: linear-gradient(135deg, #3B82F6, #6366F1);
    min-width: 100px;
}

/* Botón de Copiar */
button[onclick="copySuggestionToPrompt()"] {
    padding: 0.5rem;
    min-width: 40px;
    background: linear-gradient(135deg, #10B981, #34D399);
    
    &:hover {
        background: linear-gradient(135deg, #34D399, #10B981);
    }
}