/*
 * MasterStudy LMS Custom Dashboard Frontend Styles
 */

#mslms-custom-dashboard {
    /* Basic layout for your dashboard */
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.mslms-dashboard-sidebar {
    flex: 0 0 250px; /* Fixed width sidebar */
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.mslms-dashboard-content {
    flex: 1; /* Takes remaining space */
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.mslms-dashboard-tabs ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mslms-dashboard-tabs li {
    margin-bottom: 10px;
}

.mslms-dashboard-tabs a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.mslms-dashboard-tabs a.active,
.mslms-dashboard-tabs a:hover {
    background-color: #007bff; /* Primary color */
    color: #ffffff;
}

.mslms-dashboard-section h2 {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.mslms-dashboard-message {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: bold;
}

.mslms-dashboard-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.mslms-dashboard-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Add more styles for tables, forms, buttons as you build them */
.mslms-user-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.mslms-user-table th,
.mslms-user-table td {
    border: 1px solid #e9ecef;
    padding: 12px 15px;
    text-align: left;
}

.mslms-user