.bel-dashboard-wrapper-24b4d58a {
    display: flex;
    min-height: 800px;
    background: #091a30;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    border: 1px solid #142a42;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .bel-dashboard-wrapper-24b4d58a {
        flex-direction: column;
    }
}

.bel-sidebar-24b4d58a {
    width: 270px;
    background: #071529;
    border-right: 1px solid #142a42;
    padding: 35px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .bel-sidebar-24b4d58a {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #142a42;
        padding: 24px;
    }
}

.bel-sidebar-logo-24b4d58a {
    margin-bottom: 40px;
}

.bel-sidebar-logo-24b4d58a h2 {
    color: #ffffff !important;
    font-size: 26px;
    font-weight: 800;
    margin: 0;
}

.bel-sidebar-logo-24b4d58a span {
    color: #00ff66;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-top: 4px;
}

.bel-sidebar-nav-24b4d58a ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bel-sidebar-item-24b4d58a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    border-radius: 8px;
    color: #a0aec0 !important;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.bel-sidebar-item-24b4d58a:hover,
.bel-sidebar-item-24b4d58a.active {
    background: rgba(0, 255, 102, 0.15);
    color: #00ff66 !important;
    border-left: 4px solid #00ff66;
}

.bel-sidebar-footer-24b4d58a {
    margin-top: auto;
    padding-top: 40px;
}

.bel-logout-btn-24b4d58a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ff4d4d !important;
    font-weight: 800;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.bel-logout-btn-24b4d58a:hover {
    background: rgba(255, 77, 77, 0.1);
}

.bel-main-content-24b4d58a {
    flex-grow: 1;
    padding: 40px;
    background: #091a30;
}

@media (max-width: 768px) {
    .bel-main-content-24b4d58a {
        padding: 24px;
    }
}

.bel-tab-panel-24b4d58a {
    display: none;
}

.bel-tab-panel-24b4d58a.active {
    display: block;
    animation: fadeIn_24b4d58a 0.4s ease;
}

@keyframes fadeIn_24b4d58a {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bel-welcome-banner-24b4d58a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0d233e;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #142a42;
}

@media (max-width: 768px) {
    .bel-welcome-banner-24b4d58a {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.bel-welcome-text-24b4d58a h1 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff !important;
    margin: 0 0 8px 0;
}

.bel-welcome-text-24b4d58a p {
    color: #a0aec0;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.bel-quick-actions-24b4d58a {
    display: flex;
    gap: 12px;
}

.bel-quick-btn-24b4d58a {
    background: transparent;
    border: 1px solid #142a42;
    color: #ffffff;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bel-quick-btn-24b4d58a:hover {
    border-color: #00ff66;
    background: rgba(0, 255, 102, 0.05);
}

.bel-grid-two-24b4d58a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .bel-grid-two-24b4d58a {
        grid-template-columns: 1fr;
    }
}

.bel-card-24b4d58a {
    background: #0d233e;
    border: 1px solid #142a42;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.bel-card-header-24b4d58a {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.bel-card-header-24b4d58a span {
    font-size: 20px;
}

.bel-card-header-24b4d58a h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff !important;
}

.bel-project-list-24b4d58a,
.bel-session-list-24b4d58a {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.bel-project-row-24b4d58a,
.bel-session-row-24b4d58a {
    background: rgba(255, 255, 255, 0.02);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #142a42;
}

.bel-project-info-24b4d58a,
.bel-session-info-24b4d58a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.bel-project-title-24b4d58a,
.bel-session-title-24b4d58a {
    font-weight: 800;
    font-size: 15px;
    color: #ffffff;
}

.bel-progress-bar-container-24b4d58a {
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
}

.bel-progress-bar-24b4d58a {
    background: #00ff66;
    height: 100%;
}

.bel-badge-24b4d58a {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
}

.bel-badge-24b4d58a.in-progress { background: rgba(226, 161, 67, 0.15); color: #e2a143; }
.bel-badge-24b4d58a.completed { background: rgba(0, 255, 102, 0.15); color: #00ff66; }
.bel-badge-24b4d58a.scheduled { background: rgba(0, 150, 255, 0.15); color: #00c3ff; }
.bel-badge-24b4d58a.unscheduled { background: rgba(229, 62, 62, 0.15); color: #e53e3e; }

.bel-btn-primary-24b4d58a {
    background: #00ff66;
    color: #071529 !important;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.bel-btn-primary-24b4d58a:hover {
    background: #00cc52;
}

.bel-btn-secondary-24b4d58a {
    background: transparent;
    border: 1px solid #142a42;
    color: #cbd5e1 !important;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 800;
    transition: all 0.3s ease;
}

.bel-btn-secondary-24b4d58a:hover {
    border-color: #00ff66;
    color: #00ff66 !important;
}

.bel-anydesk-box-24b4d58a {
    margin-top: 24px;
}

.bel-anydesk-box-24b4d58a label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #cbd5e1;
    font-weight: 800;
}

.bel-input-btn-group-24b4d58a {
    display: flex;
    gap: 12px;
}

.bel-input-24b4d58a {
    flex-grow: 1;
    background: #071529;
    border: 1px solid #142a42;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
}

.bel-input-24b4d58a:focus {
    border-color: #00ff66;
    outline: none;
}

.bel-status-msg-24b4d58a {
    display: block;
    margin-top: 8px;
    font-size: 13px;
}

.mt-24 { margin-top: 24px; }
.text-gray-24b4d58a { color: #a0aec0; font-size: 14px; margin-bottom: 20px; font-weight: 600; }

.bel-orders-list-24b4d58a {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bel-order-card-24b4d58a {
    display: flex;
    flex-direction: column;
}

.bel-order-header-24b4d58a {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.bel-order-price-24b4d58a {
    font-size: 24px;
    font-weight: 800;
    color: #00ff66;
}

.bel-status-tag-24b4d58a {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    align-self: flex-start;
    margin-bottom: 12px;
}

.bel-status-tag-24b4d58a.completed { background: rgba(0, 255, 102, 0.15); color: #00ff66; }
.bel-status-tag-24b4d58a.processing { background: rgba(226, 161, 67, 0.15); color: #e2a143; }

.bel-order-meta-24b4d58a {
    font-size: 13px;
    color: #a0aec0;
    margin-bottom: 16px;
    font-weight: 600;
}

.bel-order-actions-24b4d58a {
    display: flex;
    gap: 12px;
}

.bel-chat-container-24b4d58a {
    display: flex;
    background: #0d233e;
    border-radius: 12px;
    border: 1px solid #142a42;
    height: 450px;
    overflow: hidden;
}

.bel-chat-sidebar-24b4d58a {
    width: 240px;
    border-right: 1px solid #142a42;
    padding: 16px;
}

.bel-chat-thread-24b4d58a {
    background: rgba(0, 255, 102, 0.05);
    border-left: 3px solid #00ff66;
    padding: 12px;
    border-radius: 6px;
}

.bel-chat-thread-24b4d58a strong {
    color: #ffffff;
    display: block;
    font-size: 14px;
    font-weight: 800;
}

.preview-24b4d58a {
    font-size: 12px;
    color: #a0aec0;
}

.bel-chat-window-24b4d58a {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bel-chat-messages-24b4d58a {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bel-chat-bubble-24b4d58a {
    max-width: 70%;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.bel-chat-bubble-24b4d58a.incoming {
    background: #071529;
    align-self: flex-start;
}

.bel-chat-bubble-24b4d58a.outgoing {
    background: #00ff66;
    color: #071529 !important;
    align-self: flex-end;
}

.bel-chat-input-area-24b4d58a {
    display: flex;
    padding: 16px;
    border-top: 1px solid #142a42;
    gap: 12px;
}

.bel-form-group-24b4d58a {
    margin-bottom: 18px;
}

.bel-form-group-24b4d58a label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 800;
    color: #a0aec0;
}

.bel-ticket-list-24b4d58a {
    list-style: none;
    padding: 0;
}

.bel-ticket-list-24b4d58a li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #142a42;
}

.mt-16 { margin-top: 16px; }
strong { color: #fff; font-weight: 800; }
h1, h2, h3, h4, h5, h6 { font-weight: 800 !important; }
