/* =========================================
   INTURN LMS DASHBOARD LAYOUT
   ========================================= */

/* Main Wrapper */
.inturn-dashboard-wrapper {
    display: flex;
    min-height: 60vh;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Sidebar Base */
.inturn-sidebar {
    width: 280px;
    background: #1e293b;
    color: #ffffff;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.inturn-sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid #334155;
    display: flex;
    align-items: center;
    gap: 15px;
}

.inturn-avatar img {
    border-radius: 50%;
    border: 2px solid #3b82f6;
}

.inturn-user-name {
    font-size: 16px;
    font-weight: 600;
    color: #f8fafc;
}

/* Sidebar Menu */
.inturn-sidebar-menu {
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

.inturn-sidebar-menu li a {
    display: block;
    padding: 12px 25px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

.inturn-sidebar-menu li a:hover {
    background: #334155;
    color: #ffffff;
}

.inturn-sidebar-menu li a.active {
    background: #334155;
    color: #ffffff;
    border-left-color: #3b82f6;
    font-weight: 500;
}

.inturn-menu-separator {
    height: 1px;
    background: #334155;
    margin: 15px 20px;
}

/* Right Content Area */
.inturn-content-area {
    flex-grow: 1;
    background: #ffffff;
    padding: 30px;
    overflow-x: hidden;
}

/* Force Tutor LMS content to fit our container perfectly without breaking */
.inturn-content-area .tutor-dashboard-content {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

.inturn-content-area .tutor-dashboard-per_PAGE-wrapper {
    padding: 0 !important;
}

/* Custom Page Styling */
.inturn-custom-page h2 {
    margin-top: 0;
    color: #1e293b;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
}