/* School Forms CSS - Comprehensive Form Styles */

/* Main Form Container */
.lpsm-comprehensive-form {
    max-width: 100%;
    width: 100%;
}

/* Main content wrapper */
.main-content {
    overflow: visible;
    position: relative;
}

/* Form headings */
.lpsm-form-section h2 {
    margin: 0 0 30px 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.lpsm-form-section h3 {
    margin: 30px 0 15px 0;
    color: #555;
    font-size: 18px;
    font-weight: 600;
}

.lpsm-form-section p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Form Layout */
.lpsm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.lpsm-form-group {
    margin-bottom: 25px;
}

.lpsm-form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.lpsm-form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.lpsm-form-control:focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
    outline: none;
}

.lpsm-form-control:invalid {
    border-color: #dc3545;
}

.lpsm-form-group small {
    display: block;
    margin-top: 5px;
    color: #6c757d;
    font-size: 12px;
    line-height: 1.4;
}

.required {
    color: #dc3545;
    font-weight: bold;
}

/* Checkbox Groups */
.lpsm-checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.lpsm-checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.lpsm-checkbox-group label:hover {
    background-color: #f8f9fa;
}

.lpsm-checkbox-group input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    accent-color: #0073aa;
}

/* Toggle Switches */
.lpsm-toggle-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
}

.lpsm-toggle {
    position: relative;
    width: 50px;
    height: 24px;
    appearance: none;
    background: #ccc;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.lpsm-toggle:checked {
    background: #0073aa;
}

.lpsm-toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
    pointer-events: none;
}

.lpsm-toggle:checked + .lpsm-toggle-slider {
    transform: translateX(26px);
}

/* Pedagogy Grid */
.lpsm-pedagogy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.lpsm-pedagogy-item {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.lpsm-pedagogy-item:hover {
    border-color: #0073aa;
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.1);
}

.lpsm-pedagogy-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.lpsm-pedagogy-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: #0073aa;
}

.lpsm-pedagogy-title {
    font-size: 16px;
    font-weight: 600;
}

.lpsm-pedagogy-description {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    font-style: italic;
}

/* Curriculum Description */
.lpsm-curriculum-description {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-left: 4px solid #0073aa;
    border-radius: 4px;
}

/* Current Image Display */
.current-image {
    margin-top: 10px;
    padding: 15px;
    background: #f9f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.current-image p {
    margin: 0 0 10px 0;
    font-weight: 600;
    color: #333;
}

.current-image img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 4px;
}

/* Gallery Grid */
.current-gallery {
    margin-top: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.gallery-item {
    position: relative;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 4px;
    background: white;
}

.gallery-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.gallery-item-info {
    padding: 5px;
    font-size: 12px;
    background: #f8f9fa;
    margin-top: 5px;
    border-radius: 4px;
}

.gallery-item-info p {
    margin: 2px 0;
    color: #666;
}

/* Dynamic Items (Awards, Events, Terms) */
.award-item, .event-item, .term-date-item {
    border: 1px solid #e9ecef;
    padding: 20px;
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.award-item:hover, .event-item:hover, .term-date-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: #0073aa;
}

.award-item h4, .event-item h4, .term-date-item h4 {
    margin: 0 0 20px 0;
    color: #0073aa;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 8px;
}

/* Buttons */
.lpsm-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1;
    box-sizing: border-box;
}

.lpsm-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.2);
}

.lpsm-btn-primary {
    background: #0073aa;
    color: white;
    border: 1px solid #0073aa;
}

.lpsm-btn-primary:hover {
    background: #005a87;
    border-color: #005a87;
    transform: translateY(-1px);
}

.lpsm-btn-secondary {
    background: #6c757d;
    color: white;
    border: 1px solid #6c757d;
}

.lpsm-btn-secondary:hover {
    background: #5a6268;
    border-color: #5a6268;
    transform: translateY(-1px);
}

.lpsm-btn-danger {
    background: #dc3545;
    color: white;
    border: 1px solid #dc3545;
    padding: 8px 16px;
    font-size: 12px;
}

.lpsm-btn-danger:hover {
    background: #c82333;
    border-color: #bd2130;
}

.lpsm-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Form Actions */
.lpsm-form-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e1e5e9;
    display: flex;
    gap: 15px;
}

/* Notifications */
.lpsm-notice {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
}

.lpsm-notice-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.lpsm-notice-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.lpsm-notice-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.lpsm-notice-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Empty State */
.lpsm-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.lpsm-empty-state h3 {
    color: #333;
    margin-bottom: 10px;
}

/* Loading State */
.lpsm-loading {
    position: relative;
    opacity: 0.6;
    pointer-events: none;
}

.lpsm-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #0073aa;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .lpsm-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    
    .lpsm-pedagogy-grid {
        grid-template-columns: 1fr;
    }
    
    .lpsm-checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .lpsm-form-actions {
        flex-direction: column;
    }
    
    .lpsm-form-actions .lpsm-btn {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    .lpsm-form-section h2 {
        font-size: 20px;
    }
    
    .lpsm-form-section h3 {
        font-size: 16px;
    }
    
    .lpsm-form-control {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .lpsm-pedagogy-item {
        padding: 15px;
    }
    
    .award-item, .event-item, .term-date-item {
        padding: 15px;
    }
}

/* Ensure form and dashboard have proper overflow */
#lpsm-edit-school-form,
#lpsm-add-school-form {
    overflow: visible;
    position: relative;
    display: block;
    height: auto;
}

.dashboard-content {
    overflow: visible;
    position: relative;
    display: block;
}

/* Time Slot and Break Time Rows */
.time-slot-row,
.break-time-row {
    display: flex;
    gap: 15px;
    align-items: end;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.time-slot-row .lpsm-form-group,
.break-time-row .lpsm-form-group {
    flex: 1;
}

.time-slot-row .lpsm-form-group:last-child,
.break-time-row .lpsm-form-group:last-child {
    flex: 0 0 auto;
    width: auto;
}

/* Modern Curriculum UI Styles */
.lpsm-curriculum-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.lpsm-curriculum-header h2 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff !important;
    border-bottom: 2px solid #ffffff;
}

.lpsm-curriculum-subtitle {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
    color: #ffffff !important;
}

.lpsm-curriculum-stage {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid #e1e5e9;
}

.lpsm-stage-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e1e5e9;
}

.lpsm-stage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.lpsm-stage-info {
    flex: 1;
}

.lpsm-stage-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
}

.lpsm-stage-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.lpsm-age-range, .lpsm-stage-type {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.lpsm-stage-type {
    background: #28a745;
}

.lpsm-stage-description {
    margin: 0;
    color: #3a3a3a !important;
    font-size: 0.95rem;
    line-height: 1.5;
}

.lpsm-subjects-category {
    padding: 1.5rem;
    border-bottom: 1px solid #f1f3f4;
}

.lpsm-subjects-category:last-child {
    border-bottom: none;
}

.lpsm-category-title {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.lpsm-subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.lpsm-subject-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lpsm-subject-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.lpsm-subject-card.lpsm-core-subject {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-color: #ffc107;
}

.lpsm-subject-card.lpsm-requirement-subject {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-color: #17a2b8;
}

.lpsm-subject-card.lpsm-option-subject {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-color: #dc3545;
}

.lpsm-subject-card.lpsm-academic-subject {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-color: #28a745;
}

.lpsm-subject-card.lpsm-vocational-subject {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-color: #ffc107;
}

.lpsm-subject-card.lpsm-other-subject {
    background: linear-gradient(135deg, #e2e3e5 0%, #d6d8db 100%);
    border-color: #6c757d;
}

.lpsm-subject-label {
    display: flex;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
    margin: 0;
    width: 100%;
}

.lpsm-subject-label input[type="checkbox"] {
    margin: 0 1rem 0 0;
    transform: scale(1.2);
    accent-color: #667eea;
}

.lpsm-subject-icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.lpsm-subject-name {
    font-weight: 500;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.4;
}

.lpsm-subject-card:hover .lpsm-subject-name {
    color: #2c3e50;
}

/* Student to Teacher Ratio Input */
.ratio-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ratio-input-group input {
    flex: 0 0 150px;
}

.ratio-label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.lpsm-help-text {
    font-size: 13px;
    color: #666;
    margin: 5px 0 0 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .lpsm-subjects-grid {
        grid-template-columns: 1fr;
    }
    
    .lpsm-stage-header {
        flex-direction: column;
        text-align: center;
    }
    
    .lpsm-stage-meta {
        justify-content: center;
    }
    
    .lpsm-curriculum-header {
        padding: 1.5rem;
    }
    
    .lpsm-curriculum-header h2 {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .lpsm-form-actions {
        display: none;
    }
    
    .lpsm-form-section {
        page-break-inside: avoid;
    }
    
    .lpsm-form-section h2 {
        page-break-after: avoid;
    }
}

/* School Dashboard Overview Styles */
.lpsm-school-overview {
    margin-bottom: 40px;
}

.lpsm-school-summary-card {
    background: #fff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.lpsm-school-summary-card h2 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.lpsm-school-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.lpsm-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lpsm-info-item strong {
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lpsm-info-item span {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.lpsm-school-sections {
    margin-top: 40px;
}

.lpsm-school-sections h2 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.lpsm-section-description {
    color: #6c757d;
    margin: 0 0 30px 0;
    font-size: 16px;
}

.lpsm-sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.lpsm-section-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.lpsm-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #0073aa;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.lpsm-section-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #0073aa;
    text-decoration: none;
    color: inherit;
}

.lpsm-section-card:hover::before {
    transform: scaleY(1);
}

.lpsm-section-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lpsm-section-card:hover .lpsm-section-icon {
    background: #0073aa;
    color: #fff;
}

.lpsm-section-icon .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #0073aa;
    transition: color 0.3s ease;
}

.lpsm-section-card:hover .lpsm-section-icon .dashicons {
    color: #fff;
}

.lpsm-section-content {
    flex: 1;
    min-width: 0;
}

.lpsm-section-content h3 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.lpsm-section-card:hover .lpsm-section-content h3 {
    color: #0073aa;
}

.lpsm-section-content p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
}

.lpsm-section-arrow {
    flex-shrink: 0;
    color: #6c757d;
    transition: all 0.3s ease;
}

.lpsm-section-card:hover .lpsm-section-arrow {
    color: #0073aa;
    transform: translateX(5px);
}

.lpsm-section-arrow .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lpsm-sections-grid {
        grid-template-columns: 1fr;
    }
    
    .lpsm-school-info-grid {
        grid-template-columns: 1fr;
    }
    
    .lpsm-section-card {
        flex-direction: column;
        text-align: center;
    }
    
    .lpsm-section-arrow {
        display: none;
    }
}

/* School Settings Sidebar Navigation */
.main-content.has-sidebar {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.main-content-inner.with-sidebar {
    flex: 1;
    min-width: 0; /* Prevents flex item from overflowing */
}

.lpsm-school-settings-sidebar {
    width: 280px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.lpsm-sidebar-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.lpsm-sidebar-header h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.lpsm-sidebar-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.lpsm-sidebar-back-link:hover {
    color: #764ba2;
}

.lpsm-sidebar-back-link .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 16px;
}

.lpsm-section-nav {
    margin: 0;
    padding: 0;
}

.lpsm-section-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lpsm-section-nav-item {
    margin: 0 0 4px 0;
}

.lpsm-section-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
}

.lpsm-section-nav-link:hover {
    background: #f8f9fa;
    color: #667eea;
}

.lpsm-section-nav-item.active .lpsm-section-nav-link {
    background: #667eea;
    color: #fff;
    font-weight: 500;
}

.lpsm-section-nav-item.active .lpsm-section-nav-link:hover {
    background: #5568d3;
}

.lpsm-section-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.lpsm-section-nav-icon .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    line-height: 18px;
}

.lpsm-section-nav-text {
    flex: 1;
    font-size: 14px;
}

.lpsm-section-nav-indicator {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.lpsm-section-nav-indicator .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 16px;
}

/* Responsive adjustments for sidebar */
@media (max-width: 1024px) {
    .main-content.has-sidebar {
        flex-direction: column;
    }
    
    .lpsm-school-settings-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        max-height: none;
        margin-bottom: 20px;
    }
    
    .main-content-inner.with-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .lpsm-school-settings-sidebar {
        padding: 15px;
    }
    
    .lpsm-section-nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }
}