/* ===== RadioDJ Chat Layout ===== */

.rdj-chat-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Left column: messages */
.rdj-chat-left {
    flex: 2;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
    border-right: 1px solid #ddd;
}

/* Right column: reply form */
.rdj-chat-right {
    flex: 1;
    padding-left: 10px;
}

/* Sticky form on desktop */
@media (min-width: 901px) {
    .rdj-chat-right {
        position: sticky;
        top: 80px;
    }
}

/* Mobile layout */
@media (max-width: 900px) {
    .rdj-chat-layout {
        flex-direction: column;
    }

    .rdj-chat-left {
        max-height: none;
        overflow-y: visible;
        border-right: none;
        padding-right: 0;
    }

    .rdj-chat-right {
        position: static;
        padding-left: 0;
    }
}