/* /css/core/biscuits-chat-mobile.css */
/* Mobile-specific styles for chat interface */

.chat-form-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px;
    border-top: 1px solid #ccc;
    z-index: 1000;
}

.chat-form-mobile form {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
}

.chat-form textarea#message-input {
    flex: 1;
    width: auto;
    max-height: 100px;
    resize: none;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.chat-form input#chat-send {
    width: 80px;
    padding: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    touch-action: manipulation;
}

.chat-form input#chat-send:hover {
    background: #0056b3;
}

/* Mobile styles for chat-control-pills-mobile */
.chat-control-pills-mobile a.button {
    display: block;
    width: 100%;
    margin: 5px 0;
    padding: 12px;
    font-size: 16px;
    text-align: center;
    background: #f8f9fa;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    text-decoration: none;
}

.chat-control-pills-mobile a.button:hover {
    background: #e9ecef;
}

@media (min-width: 768px) {
    .chat-form-mobile,
    .chat-control-pills-mobile a.button {
        display: none; /* Hide mobile styles on desktop */
    }
}