.bar-detail-container {
    width: 100%;
    height: 55vh;
    max-height: 55vh;
    background-color: var(--theme-app-bg);
    border-radius: 24px 24px 0 0;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUpBar 0.25s ease-out;
}

/* LAYOUT: Thanh tiêu đề */
.bar-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-divider);
    gap: 12px;
}

.bar-detail-header h3 {
    margin: 0;
    font-size: 16px;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

/* LAYOUT: Vùng rỗng để nạp nội dung động */
.bar-detail-content {
    flex: 1;
    overflow-y: auto;
    padding-top: 15px;
    -webkit-overflow-scrolling: touch;
}

/* ANIMATION: Hiệu ứng trượt từ dưới lên */
@keyframes slideUpBar {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}