/* ===================================== 
   LLM INTERFACE CSS MODULE
   Standalone LLM interface components
   Depends on: variables.css, animations.css
   ===================================== */

/* ===== LLM INTERFACE BUTTONS ===== */

/* Upload and Send buttons */
.upload-btn, .send-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 0.75rem;
    color: #ffffff;
    cursor: pointer;
    transition: var(--transition-all);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.upload-btn:hover, .send-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

/* ===== FILE UPLOAD COMPONENTS ===== */

/* Hidden file input */
.file-input {
    display: none;
}

/* Upload status notification */
.upload-status {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: rgba(34, 197, 94, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    z-index: 10;
}

/* ===== SUGGESTION COMPONENTS ===== */

/* Suggestions container */
.suggestions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Individual suggestion pill */
.suggestion-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-all);
    white-space: nowrap;
}

.suggestion-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

/* Note: LLM mobile responsive styles remain in mobile.css */
/* Note: Loading animations use .loading-icon from animations.css */