/* src/blocks/chat-input-card/styles.module.css */

/* Main container styles */
.swp__chatInputCard--acXaM {
    padding: 20px 0;
    border-radius: 8px;
    position: relative;
    /* max-width: 100%; */
}

.swp__chatInputCard--acXaM > div {
    box-shadow: 0 2px 4px rgb(247, 247, 247);
}



/* Form styles */
.swp__form--ELL6j {
    display: flex;
    margin: 0 auto;
    gap: 8px;
    background: white;
}

/* Textarea styles */
.swp__textarea--GlWwd {
    display: flex;
    flex: 1;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid #ddd;
    background-color: #f5f5f5f5;
    border-radius: 8px;
    resize: none;
    overflow-y: auto;
    padding: 12px;
}

.swp__textarea--GlWwd:focus {
    border: 1px solid #ddd;
    outline: none;
}

.swp__textarea--GlWwd:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Button styles */
.swp__button--J6MEJ {
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 10px 20px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    min-height: 3rem;
}

.swp__button--J6MEJ:hover:not(:disabled) {
    background-color: var(--button-hover-bg) !important;
    color: var(--button-hover-color) !important;
}

.swp__button--J6MEJ:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: #c2c2c2fa !important;
}

/* Error message styles */
.swp__error--UvOXI {
    color: #dc3545;
    font-size: 14px;
    margin-top: 8px;
}
