/* Priority badge styles for disaster details */
.priority-badge {
    display: inline-block;
    padding: 3px 14px;
    border-radius: 16px;
    font-size: 0.98em;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-left: 6px;
    vertical-align: middle;
}
.priority-low {
    background: #d1fae5;
    color: #047857;
    border: 1px solid #10b981;
}
.priority-medium {
    background: #fef3c7;
    color: #b45309;
    border: 1px solid #f59e42;
}
.priority-high, .priority-critical {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #ef4444;
}
/* --- Enhanced Disaster Details Report Info --- */
.dashboard-card .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #2563eb 0%, #38bdf8 100%);
    color: #fff;
    border-radius: 12px 12px 0 0;
    padding: 18px 24px 12px 24px;
    margin: -32px -28px 18px -28px;
    box-shadow: 0 2px 8px 0 rgba(37,99,235,0.08);
}
.dashboard-card .card-header h3 {
    color: #fff;
    font-size: 1.18rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.dashboard-card .card-header i {
    font-size: 1.3em;
    color: #fff;
    margin-right: 6px;
}
.dashboard-card .card-content {
    background: #f8fafc;
    border-radius: 0 0 12px 12px;
    padding: 18px 0 8px 0;
}
.detail-section {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 13px 0 13px 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    transition: background 0.2s;
}
.detail-section:hover {
    background: #e0f2fe;
}
.detail-section label {
    min-width: 130px;
    font-weight: 700;
    color: #2563eb;
    font-size: 1.04rem;
    display: flex;
    align-items: center;
    gap: 7px;
}
.detail-section .value {
    color: #222;
    font-size: 1.04rem;
    word-break: break-word;
    font-weight: 500;
}
.detail-section i {
    color: #38bdf8;
    font-size: 1.1em;
}
.dashboard-card img {
    margin-top: 6px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
}
/* --- Disaster Details Page Custom Styles --- */
.dashboard-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
    padding: 32px 28px 24px 28px;
    margin-top: 32px;
    margin-bottom: 32px;
    border: 1px solid #e5e7eb;
}
.dashboard-card .card-header {
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 18px;
    padding-bottom: 8px;
}
.dashboard-card h3 {
    font-size: 1.3rem;
    color: #2563eb;
    margin: 0;
}
.dashboard-card .card-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.detail-section {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}
.detail-section:last-child {
    border-bottom: none;
}
.detail-section label {
    min-width: 120px;
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
}
.detail-section .value {
    color: #222;
    font-size: 1rem;
    word-break: break-word;
}
.dashboard-card img {
    margin-top: 6px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
}
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    margin-top: 18px;
}
.page-title h2 {
    margin: 0;
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
}
.page-title p {
    margin: 0;
    color: #64748b;
    font-size: 1rem;
}
.page-actions .btn {
    font-size: 0.95rem;
    padding: 7px 18px;
}
/* Admin Dashboard CSS */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #6b7280;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
    --light-color: #f9fafb;
    --dark-color: #1f2937;
    --border-color: #e5e7eb;
    --text-color: #374151;
    --text-muted: #6b7280;
    --sidebar-width: 280px;
    --sidebar-collapsed-width: 70px;
    --header-height: 70px;
    --border-radius: 8px;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f8fafc;
}

/* Login Page Styles */
.login-page, .register-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.login-container, .register-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.login-card, .register-card {
    flex: 1;
    padding: 40px;
    min-width: 400px;
}

.login-info {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-header, .register-header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 10px;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.login-form, .register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
    z-index: 2;
}

.input-group input {
    padding-left: 40px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px;
    z-index: 2;
}

input, select, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-success {
    background-color: var(--success-color);
    color: white;
}

.btn-warning {
    background-color: var(--warning-color);
    color: white;
}

.btn-danger {
    background-color: var(--danger-color);
    color: white;
}

.btn-emergency {
    background-color: #dc2626;
    color: white;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-xs {
    padding: 4px 8px;
    font-size: 11px;
}

.btn-icon {
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background-color: var(--light-color);
    color: var(--text-color);
}

.alert {
    padding: 12px 16px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-warning {
    background-color: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.alert-info {
    background-color: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* Admin Layout */
.admin-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: var(--sidebar-collapsed-width);
    background: white;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 1000;
    transition: width 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.sidebar:hover {
    width: var(--sidebar-width);
    box-shadow: var(--shadow-lg);
}

.sidebar-hover-zone {
    display: none;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 75px;
}

.sidebar:hover .sidebar-header {
    justify-content: space-between;
}

.sidebar-header .logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.sidebar-header .logo span {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar:hover .sidebar-header .logo span {
    opacity: 1;
}

.sidebar-header .logo img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin-right: 0;
    transition: margin-right 0.3s ease;
}

.sidebar:hover .sidebar-header .logo img {
    margin-right: 10px;
}

.sidebar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.sidebar:hover .sidebar-toggle {
    opacity: 1;
}

.sidebar-toggle:hover,
.sidebar-toggle:focus-visible {
    background-color: var(--light-color);
    color: var(--primary-color);
    outline: none;
}

.sidebar-menu {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.sidebar-menu ul {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 4px;
}

.sidebar-menu li.menu-section {
    padding: 12px 20px 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar:hover .sidebar-menu li.menu-section {
    opacity: 1;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.sidebar-menu a i {
    min-width: 20px;
    text-align: center;
}

.sidebar-menu a span {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar:hover .sidebar-menu a span {
    opacity: 1;
}

.sidebar-menu a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.sidebar-menu li.active a {
    background-color: var(--primary-color);
    color: white;
}

.sidebar-menu li.active a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary-dark);
}

.sidebar-menu .badge {
    background-color: var(--danger-color);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 12px;
    margin-left: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar:hover .sidebar-menu .badge {
    opacity: 1;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.sidebar:hover .user-info {
    justify-content: flex-start;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.user-details {
    flex: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.sidebar:hover .user-details {
    opacity: 1;
}

.user-name {
    font-weight: 500;
    color: var(--text-color);
}

.user-role {
    font-size: 12px;
    color: var(--text-muted);
}

.main-content {
    flex: 1;
    margin-left: var(--sidebar-collapsed-width);
    display: flex;
    flex-direction: column;
    transition: margin-left 0.3s ease;
}

.main-header {
    height: var(--header-height);
    background: white;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-left .sidebar-toggle {
    display: none;
}

.header-left h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    min-width: 250px;
    z-index: 1000;
    display: none;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-body {
    max-height: 300px;
    overflow-y: auto;
}

.dropdown-body a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
    position: relative;
}

.dropdown-body a:hover {
    background-color: var(--light-color);
}

.dropdown-body a.unread {
    background-color: #fef3c7;
    border-left: 3px solid #f59e0b;
    font-weight: 600;
}

.dropdown-body a.unread:hover {
    background-color: #fde68a;
}

.unread-dot {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 20px 12px 24px;
}

.notification-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon.notification-alert {
    background: #fee2e2;
    color: #dc2626;
}

.notification-icon.notification-warning {
    background: #fef3c7;
    color: #d97706;
}

.notification-icon.notification-info {
    background: #dbeafe;
    color: #2563eb;
}

.notification-icon.notification-default {
    background: #f3f4f6;
    color: #6b7280;
}

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

.notification-content strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.notification-content p {
    margin: 0 0 4px 0;
    font-size: 13px;
    color: #6b7280;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.notification-content small {
    font-size: 11px;
    color: #9ca3af;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dropdown-footer {
    padding: 10px 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease;
}

.user-menu-btn:hover {
    background-color: var(--light-color);
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--danger-color);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 12px;
    min-width: 18px;
    text-align: center;
}

.page-content {
    flex: 1;
    padding: 30px;
}

/* Dashboard Styles */
.dashboard-grid {
    display: grid;
    gap: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon.critical {
    background-color: #fee2e2;
    color: var(--danger-color);
}

.stat-icon.warning {
    background-color: #fef3c7;
    color: var(--warning-color);
}

.stat-icon.active {
    background-color: #dbeafe;
    color: var(--info-color);
}

.stat-icon.pending {
    background-color: #f3e8ff;
    color: #7c3aed;
}

.stat-icon.info {
    background-color: #ecfdf5;
    color: var(--success-color);
}

.stat-icon.success {
    background-color: #ecfdf5;
    color: var(--success-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.dashboard-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-content {
    padding: 24px;
}

.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.table th,
.table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    background-color: var(--light-color);
    font-weight: 600;
    color: var(--text-color);
}

.tracking-id {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--primary-color);
}

.severity-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.severity-red {
    background-color: #fee2e2;
    color: #991b1b;
}

.severity-orange {
    background-color: #fef3c7;
    color: #92400e;
}

.severity-green {
    background-color: #d1fae5;
    color: #065f46;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-on-going {
    background-color: #fef3c7;
    color: #92400e;
}

.status-in-progress {
    background-color: #f3e8ff;
    color: #6b21a8;
}

.status-completed {
    background-color: #d1fae5;
    color: #065f46;
}

.time-ago {
    font-size: 12px;
    color: var(--text-muted);
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.performance-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.performance-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.performance-rank {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
}

.performance-info {
    flex: 1;
}

.lgu-name {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.performance-stats {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-muted);
}

.performance-stats .stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.quick-action:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.quick-action i {
    font-size: 2rem;
}

.quick-action span {
    font-weight: 500;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sidebar {
        width: var(--sidebar-width);
        transform: translateX(-100%);
    }
    
    .sidebar.show {
        transform: translateX(0);
        box-shadow: var(--shadow-lg);
    }

    .sidebar.show .sidebar-header .logo span,
    .sidebar.show .sidebar-menu a span,
    .sidebar.show .user-details,
    .sidebar.show .sidebar-menu .badge,
    .sidebar.show .sidebar-menu li.menu-section {
        opacity: 1;
    }

    .sidebar.show .sidebar-header .logo img {
        margin-right: 10px;
    }

    .sidebar.show .sidebar-toggle {
        opacity: 1;
    }

    .sidebar.show .user-info {
        justify-content: flex-start;
    }

    .sidebar:hover {
        width: var(--sidebar-width);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .main-header .sidebar-toggle {
        display: inline-flex;
        opacity: 1;
    }
    
    .mobile-only {
        display: block;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .page-content {
        padding: 20px;
    }
    
    .main-header {
        padding: 0 20px;
    }
    
    .login-container, .register-container {
        flex-direction: column;
    }
    
    .login-info {
        display: none;
    }
}

/* Print Styles */
@media print {
    .sidebar,
    .main-header,
    .btn,
    .dropdown {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .page-content {
        padding: 0;
    }
}