/* ساختار اصلی صفحه */
.container-fluid {
    height: calc(100vh - 60px); /* کاهش ارتفاع برای هدر */
    padding: 0;
}

.row {
    height: 100%;
    margin: 0;
}

/* سایدبار گفتگوها */
.sidebar {
    background-color: #161B22;
    height: 100%;
    padding: 20px;
    border-left: 1px solid #233554;
    overflow-y: auto;
    direction: rtl;
}

/* بخش اصلی چت */
.chat-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    direction: rtl;
}

.chat-box {
    flex: 1;
    min-height: 200px; /* حداقل ارتفاع برای نمای موبایل */
    overflow-y: auto;
    padding: 15px;
    border: solid 1px royalblue;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.input-area {
    border: solid 1px royalblue;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    flex-shrink: 0; /* جلوگیری از فشرده شدن */
}

/* واکنش‌گرایی */
@media (max-width: 768px) {
    .container-fluid {
        height: auto;
        min-height: 100vh;
    }
    
    .row {
        flex-direction: column;
        height: auto;
    }
    
    .sidebar {
        height: auto;
        max-height: 200px;
        border-left: none;
        border-bottom: 1px solid #233554;
    }
    
    .chat-container {
        height: auto;
        flex: 1;
    }
    
    .chat-box {
        min-height: 300px; /* افزایش حداقل ارتفاع در موبایل */
    }
}