.elementor-19784 .elementor-element.elementor-element-b3be168{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-19784 .elementor-element.elementor-element-b3be168{--content-width:1600px;}}/* Start custom CSS for container, class: .elementor-element-b3be168 *//* ---------------------- Container Background Only ---------------------- */
.job-binge-dashboard-layout {
    display: flex;
    gap: 25px;
    padding: 40px 30px;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(135deg, #e0eaff 0%, #f7f9fc 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin: 20px auto;
}

/* ---------------------- Sidebar ---------------------- */
.dashboard-sidebar {
    width: 250px;
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px;
    height: fit-content;
    transition: all 0.3s ease;
}

/* Sidebar User Info */
.sidebar-user-info {
    text-align: center;
    margin-bottom: 25px;
}
.sidebar-user-info .avatar {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-bottom: 12px;
}
.sidebar-user-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}
.sidebar-edit-profile-btn {
    display: inline-block;
    font-size: 0.8em;
    color: #0052cc;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
}
.sidebar-edit-profile-btn:hover {
    background-color: #0052cc;
    color: #fff;
}

/* Sidebar Navigation */
.dashboard-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
}
.dashboard-nav .nav-item:hover,
.dashboard-nav .nav-item.active {
    background: #0052cc;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,82,204,0.25);
}
.dashboard-nav .nav-item.logout {
    margin-top: 20px;
    border-top: 1px solid #e5e7eb;
    padding-top: 15px;
}

/* ---------------------- Main Content ---------------------- */
.dashboard-main-content {
    flex: 1;
}

/* Header */
.dashboard-header {
    margin-bottom: 30px;
}
.dashboard-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
}
.dashboard-header p {
    font-size: 14px;
    color: #64748b;
}

/* ---------------------- Profile Completion Card ---------------------- */
.profile-completion-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    margin-bottom: 30px;
}

/* Progress Bar */
.progress-bar-container {
    width: 100%;
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    background: #0052cc;
    border-radius: 6px;
    transition: width 0.5s ease-in-out;
}

/* Checklist */
.completion-checklist li a:hover {
    background: rgba(0,82,204,0.1);
}

/* Metric Cards */
.key-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.metric-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}
.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,82,204,0.2);
}

/* Tables */
.dashboard-jobs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.dashboard-jobs-table th,
.dashboard-jobs-table td {
    padding: 14px 15px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}
.dashboard-jobs-table th {
    font-size: 13px;
    font-weight: 600;
    background: #f0f4ff;
    color: #64748b;
}
.dashboard-jobs-table tr:hover {
    background: rgba(0,82,204,0.05);
}

/* Buttons */
.jb-button-small {
    background: #0052cc;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.jb-button-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,82,204,0.25);
}

/* Accordion */
.accordion-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.05);
}
.accordion-header.active,
.accordion-header:hover {
    background: #f0f4ff;
}

/* Responsive */
@media (max-width: 992px) {
    .job-binge-dashboard-layout {
        flex-direction: column;
        padding: 20px 15px;
    }
    .dashboard-sidebar {
        width: 100%;
        margin-bottom: 20px;
    }
}/* End custom CSS */