﻿@keyframes fadeIn {
    from {
    opacity: 0;
}
to {
    opacity: 1;
}
}@keyframes slideUp {
    from {
    transform: translateY(20px);
    opacity: 0;
}
to {
    transform: translateY(0);
    opacity: 1;
}
}@keyframes bounceIn {
    0% {
    transform: scale(0.3);
    opacity: 0;
}
50% {
    transform: scale(1.05);
}
70% {
    transform: scale(0.9);
}
100% {
    transform: scale(1);
    opacity: 1;
}
}* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #1e293b;
    background-color: #f8fafc;
    line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: .5rem;
}
h1 {
    font-size: 1.875rem;
}
h2 {
    font-size: 1.5rem;
}
h3 {
    font-size: 1.25rem;
}
h4 {
    font-size: 1.125rem;
}
h5 {
    font-size: 1rem;
}
h6 {
    font-size: .875rem;
}
p {
    margin-bottom: 1rem;
}
p:last-child {
    margin-bottom: 0;
}
a {
    color: #2563eb;
    text-decoration: none;
    transition: color 150ms ease-in-out;
}
a:hover {
    color: #1d4ed8;
}
ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
li {
    margin-bottom: .25rem;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}
th, td {
    text-align: left;
    vertical-align: top;
}
input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
}
button {
    cursor: pointer;
    background: none;
    border: none;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,  0,  0,  0);
    white-space: nowrap;
    border: 0;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.font-light {
    font-weight: 300;
}
.font-normal {
    font-weight: 400;
}
.font-medium {
    font-weight: 500;
}
.font-semibold {
    font-weight: 600;
}
.font-bold {
    font-weight: 700;
}
.text-xs {
    font-size: .75rem;
}
.text-sm {
    font-size: .875rem;
}
.text-base {
    font-size: 1rem;
}
.text-lg {
    font-size: 1.125rem;
}
.text-xl {
    font-size: 1.25rem;
}
.text-2xl {
    font-size: 1.5rem;
}
.text-3xl {
    font-size: 1.875rem;
}
.text-primary {
    color: #1e293b;
}
.text-secondary {
    color: #64748b;
}
.text-muted {
    color: #94a3b8;
}
.text-white {
    color: #fff;
}
.text-success {
    color: #10b981;
}
.text-warning {
    color: #f59e0b;
}
.text-danger {
    color: #ef4444;
}
.m-0 {
    margin: 0;
}
.m-1 {
    margin: .25rem;
}
.m-2 {
    margin: .5rem;
}
.m-3 {
    margin: 1rem;
}
.m-4 {
    margin: 1.5rem;
}
.m-5 {
    margin: 2rem;
}
.p-0 {
    padding: 0;
}
.p-1 {
    padding: .25rem;
}
.p-2 {
    padding: .5rem;
}
.p-3 {
    padding: 1rem;
}
.p-4 {
    padding: 1.5rem;
}
.p-5 {
    padding: 2rem;
}
.d-none {
    display: none;
}
.d-block {
    display: block;
}
.d-inline {
    display: inline;
}
.d-inline-block {
    display: inline-block;
}
.d-flex {
    display: flex;
}
.d-inline-flex {
    display: inline-flex;
}
.flex-row {
    flex-direction: row;
}
.flex-column {
    flex-direction: column;
}
.justify-start {
    justify-content: flex-start;
}
.justify-center {
    justify-content: center;
}
.justify-end {
    justify-content: flex-end;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}
.align-start {
    align-items: flex-start;
}
.align-center {
    align-items: center;
}
.align-end {
    align-items: flex-end;
}
.align-stretch {
    align-items: stretch;
}
.w-full {
    width: 100%}
.w-auto {
    width: auto;
}
.h-full {
    height: 100%}
.h-auto {
    height: auto;
}
.position-relative {
    position: relative;
}
.position-absolute {
    position: absolute;
}
.position-fixed {
    position: fixed;
}
.position-sticky {
    position: sticky;
}
.dashboard-container {
    display: flex;
    min-height: 100vh;
    background-color: #f8fafc;
    flex-direction: column;
}
.stats-section {
    padding: 2rem;
}
.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,  minmax(250px,  1fr));
    gap: 1.5rem;
}
@media(max-width: 767px) {
    .stats-section .stats-grid {
    grid-template-columns: 1fr;
}
}.stats-section .stat-card {
    background-color: #fff;
    border-radius: .75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
    border: 1px solid #e2e8f0;
    transition: box-shadow 250ms ease-in-out;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    animation: fadeIn 250ms ease-in-out ease-in-out;
}
.stats-section .stat-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
}
.stats-section .stat-card .stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: .75rem;
    background: linear-gradient(135deg,  #2563eb,  #3b82f6);
    color: #fff;
    font-size: 1.25rem;
}
.stats-section .stat-card .stat-content {
    flex: 1;
}
.stats-section .stat-card .stat-content h3 {
    font-size: .875rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: .25rem;
    text-transform: uppercase;
    letter-spacing: .025em;
}
.stats-section .stat-card .stat-content .stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: .25rem;
    line-height: 1;
}
.stats-section .stat-card .stat-content .stat-change {
    font-size: .875rem;
    font-weight: 500;
}
.stats-section .stat-card .stat-content .stat-change.positive {
    color: #10b981;
}
.stats-section .stat-card .stat-content .stat-change.negative {
    color: #ef4444;
}
.content-section {
    padding: 0 2rem 2rem;
}
.content-section .content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
@media(min-width: 768px)and (max-width: 1023px) {
    .content-section .content-grid {
    grid-template-columns: 1fr;
}
}@media(max-width: 767px) {
    .content-section .content-grid {
    grid-template-columns: 1fr;
}
}.chart-card {
    background-color: #fff;
    border-radius: .75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
    border: 1px solid #e2e8f0;
    transition: box-shadow 250ms ease-in-out;
    animation: slideUp 250ms ease-in-out ease-out;
}
.chart-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
}
.chart-card .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}
.chart-card .card-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
}
.chart-card .card-header .time-filter {
    width: 100%;
    padding: .5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: .5rem;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .875rem;
    background-color: #fff;
    color: #1e293b;
    transition: all 150ms ease-in-out;
    width: auto;
    min-width: 150px;
}
.chart-card .card-header .time-filter:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}
.chart-card .card-header .time-filter::placeholder {
    color: #94a3b8;
}
.chart-card .chart-container {
    padding: 1.5rem;
    height: 300px;
}
.chart-card .chart-container canvas {
    max-height: 100%}
.status-card {
    background-color: #fff;
    border-radius: .75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
    border: 1px solid #e2e8f0;
    transition: box-shadow 250ms ease-in-out;
    animation: slideUp 250ms ease-in-out ease-out;
}
.status-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
}
.status-card .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}
.status-card .card-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
}
.status-card .status-list {
    padding: 1.5rem;
}
.status-card .status-list .status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.status-card .status-list .status-item:last-child {
    border-bottom: none;
}
.status-card .status-list .status-item .status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 1rem;
}
.status-card .status-list .status-item .status-indicator.occupied {
    background-color: #10b981;
}
.status-card .status-list .status-item .status-indicator.vacant {
    background-color: #f59e0b;
}
.status-card .status-list .status-item .status-indicator.maintenance {
    background-color: #ef4444;
}
.status-card .status-list .status-item .status-indicator.pending {
    background-color: #64748b;
}
.status-card .status-list .status-item .status-label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .5rem;
    font-weight: 500;
    color: #1e293b;
}
.status-card .status-list .status-item .status-count {
    font-weight: 700;
    color: #1e293b;
    background-color: #f1f5f9;
    padding: .25rem .5rem;
    border-radius: .375rem;
    font-size: .875rem;
}
.activities-card {
    background-color: #fff;
    border-radius: .75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
    border: 1px solid #e2e8f0;
    transition: box-shadow 250ms ease-in-out;
    margin-bottom: 1.5rem;
    animation: slideUp 250ms ease-in-out ease-out;
}
.activities-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
}
.activities-card .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}
.activities-card .card-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
}
.activities-card .card-header .view-all {
    color: #2563eb;
    font-weight: 500;
    font-size: .875rem;
}
.activities-card .card-header .view-all:hover {
    color: #1d4ed8;
}
.activities-card .activities-list {
    padding: 1.5rem;
}
.activities-card .activities-list .activity-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.activities-card .activities-list .activity-item:last-child {
    border-bottom: none;
}
.activities-card .activities-list .activity-item .activity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: #64748b;
    flex-shrink: 0;
}
.activities-card .activities-list .activity-item .activity-content {
    flex: 1;
}
.activities-card .activities-list .activity-item .activity-content p {
    margin-bottom: .25rem;
    font-size: .875rem;
    color: #1e293b;
    line-height: 1.4;
}
.activities-card .activities-list .activity-item .activity-content .activity-time {
    font-size: .75rem;
    color: #94a3b8;
}
.table-card {
    background-color: #fff;
    border-radius: .75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
    border: 1px solid #e2e8f0;
    transition: box-shadow 250ms ease-in-out;
    animation: slideUp 250ms ease-in-out ease-out;
}
.table-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
}
.table-card .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}
.table-card .card-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
}
.table-card .card-header .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .5rem 1rem;
    border: none;
    border-radius: .5rem;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.5;
    cursor: pointer;
    transition: all 150ms ease-in-out;
    text-decoration: none;
    background-color: #2563eb;
    color: #fff;
    gap: .5rem;
}
.table-card .card-header .btn:disabled {
    opacity: .5;
    cursor: not-allowed;
}
.table-card .card-header .btn:hover:not(:disabled) {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
}
.table-card .card-header .btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
}
.table-card .table-container {
    overflow-x: auto;
}
.table-card .table-container .properties-table {
    width: 100%;
    border-collapse: collapse;
}
.table-card .table-container .properties-table th {
    background-color: #f1f5f9;
    padding: 0.625rem 0.75rem;
    font-weight: 600;
    font-size: .875rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .025em;
    border-bottom: 1px solid #e2e8f0;
    white-space: nowrap;
}
.table-card .table-container .properties-table td {
    padding: 0.625rem 0.75rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}
.table-card .table-container .properties-table td .property-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}
.table-card .table-container .properties-table td .property-info .property-image {
    width: 40px;
    height: 40px;
    border-radius: .5rem;
    object-fit: cover;
    flex-shrink: 0;
}
.table-card .table-container .properties-table td .property-info span {
    font-weight: 500;
    color: #1e293b;
}
.table-card .table-container .properties-table td .action-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .5rem;
}
.table-card .table-container .properties-table td .action-buttons .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: .375rem;
    background-color: rgba(0, 0, 0, 0);
    color: #94a3b8;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 150ms ease-in-out;
}
.table-card .table-container .properties-table td .action-buttons .btn-icon:hover {
    background-color: #2563eb;
    color: #fff;
    border-color: #2563eb;
}
.table-card .table-container .properties-table tbody tr:hover {
    background-color: #f1f5f9;
}
.status-badge {
    font-size: .75rem;
    font-weight: 500;
    padding: .25rem .5rem;
    border-radius: .375rem;
    text-transform: uppercase;
    letter-spacing: .025em;
}
.status-badge.occupied {
    display: inline-flex;
    align-items: center;
    padding: .25rem .5rem;
    border-radius: .375rem;
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .025em;
    background-color: rgba(16, 185, 129, .1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, .2);
}
.status-badge.vacant {
    display: inline-flex;
    align-items: center;
    padding: .25rem .5rem;
    border-radius: .375rem;
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .025em;
    background-color: rgba(245, 158, 11, .1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, .2);
}
.status-badge.maintenance {
    display: inline-flex;
    align-items: center;
    padding: .25rem .5rem;
    border-radius: .375rem;
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .025em;
    background-color: rgba(239, 68, 68, .1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, .2);
}
.status-badge.pending {
    display: inline-flex;
    align-items: center;
    padding: .25rem .5rem;
    border-radius: .375rem;
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .025em;
    background-color: rgba(100, 116, 139, .1);
    color: #64748b;
    border: 1px solid rgba(100, 116, 139, .2);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .5rem 1rem;
    border: none;
    border-radius: .5rem;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.5;
    cursor: pointer;
    transition: all 150ms ease-in-out;
    text-decoration: none;
    background-color: #2563eb;
    color: #fff;
    border: 1px solid #2563eb;
    gap: .5rem;
}
.btn:disabled {
    opacity: .5;
    cursor: not-allowed;
}
.btn:hover:not(:disabled) {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
}
.btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
}
.btn.btn-primary {
    background-color: #2563eb;
    color: #fff;
    border-color: #2563eb;
}
.btn.btn-primary:hover:not(:disabled) {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
}
.btn.btn-secondary {
    background-color: #64748b;
    color: #fff;
    border-color: #64748b;
}
.btn.btn-secondary:hover:not(:disabled) {
    background-color: #475569;
    border-color: #475569;
}
.btn.btn-outline {
    background-color: rgba(0, 0, 0, 0);
    color: #1e293b;
    border: 1px solid #e2e8f0;
}
.btn.btn-outline:hover:not(:disabled) {
    background-color: #f1f5f9;
    border-color: #94a3b8;
    color: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
}
.btn.btn-outline:active:not(:disabled) {
    background-color: #f8fafc;
    transform: translateY(0);
}
.btn.btn-outline:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
    border-color: #2563eb;
}
.btn.btn-outline.btn-outline-primary {
    color: #2563eb;
    border-color: #2563eb;
}
.btn.btn-outline.btn-outline-primary:hover:not(:disabled) {
    background-color: #2563eb;
    color: #fff;
}
.btn.btn-outline.btn-outline-success {
    color: #10b981;
    border-color: #10b981;
}
.btn.btn-outline.btn-outline-success:hover:not(:disabled) {
    background-color: #10b981;
    color: #fff;
}
.btn.btn-outline.btn-outline-warning {
    color: #f59e0b;
    border-color: #f59e0b;
}
.btn.btn-outline.btn-outline-warning:hover:not(:disabled) {
    background-color: #f59e0b;
    color: #fff;
}
.btn.btn-outline.btn-outline-danger {
    color: #ef4444;
    border-color: #ef4444;
}
.btn.btn-outline.btn-outline-danger:hover:not(:disabled) {
    background-color: #ef4444;
    color: #fff;
}
.btn.btn-success {
    background-color: #10b981;
    color: #fff;
    border-color: #10b981;
}
.btn.btn-success:hover:not(:disabled) {
    background-color: rgba(16, 185, 129, .9);
    border-color: rgba(16, 185, 129, .9);
}
.btn.btn-warning {
    background-color: #f59e0b;
    color: #fff;
    border-color: #f59e0b;
}
.btn.btn-warning:hover:not(:disabled) {
    background-color: rgba(245, 158, 11, .9);
    border-color: rgba(245, 158, 11, .9);
}
.btn.btn-danger {
    background-color: #ef4444;
    color: #fff;
    border-color: #ef4444;
}
.btn.btn-danger:hover:not(:disabled) {
    background-color: rgba(239, 68, 68, .9);
    border-color: rgba(239, 68, 68, .9);
}
.btn.btn-sm {
    padding: .25rem .5rem;
    font-size: .75rem;
    min-height: 32px;
}
.btn.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    min-height: 48px;
}
.btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}
.btn.loading {
    pointer-events: none;
    position: relative;
}
.btn.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0);
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to {
    transform: rotate(360deg);
}
}@media(max-width: 767px) {
    .sidebar.active {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04);
}
.stats-section {
    padding: 1.5rem;
}
.stats-section .stats-grid {
    gap: 1rem;
}
.stats-section .stat-card .stat-content .stat-number {
    font-size: 1.5rem;
}
.content-section {
    padding: 0 1.5rem 1.5rem;
}
.content-section .content-grid {
    gap: 1rem;
}
.header {
    padding: 1rem 1.5rem;
}
.header .header-left h1 {
    font-size: 1.25rem;
}
.chart-card .chart-container {
    height: 250px;
}
.properties-table {
    font-size: .875rem;
}
.properties-table th, .properties-table td {
    padding: .5rem;
}
}.locations-card {
    background-color: #f8fafc;
    border-radius: .75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
.locations-card .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    background: linear-gradient(135deg,  #ffffff 0%,  rgba(37,  99,  235,  0.02) 100%);
}
.locations-card .card-header h3 {
    margin: 0;
    color: #1e293b;
    font-size: 1.125rem;
    font-weight: 600;
}
.locations-card .card-header .card-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.locations-content {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0;
    min-height: 600px;
    border-radius: 0 0 .75rem .75rem;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1);
}
@media(max-width: 1024px) {
    .locations-content {
    min-height: auto;
}
}.map-container {
    position: relative;
    background-color: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    min-height: 300px;
}
.property-map {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg,  #f8fafc 0%,  #e2e8f0 30%,  #f1f5f9 70%,  #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: .875rem;
    position: relative;
    overflow: hidden;
}
.property-map::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%,  rgba(37,  99,  235,  0.08) 0%,  transparent 40%), radial-gradient(circle at 80% 20%,  rgba(16,  185,  129,  0.08) 0%,  transparent 40%), radial-gradient(circle at 60% 80%,  rgba(245,  158,  11,  0.08) 0%,  transparent 40%), radial-gradient(circle at 30% 70%,  rgba(239,  68,  68,  0.06) 0%,  transparent 30%);
    opacity: .8;
    animation: mapShimmer 8s ease-in-out infinite;
}
.property-map::after {
    content: "🗺️ Interactive Map View";
    position: relative;
    z-index: 1;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg,  rgba(248,  250,  252,  0.95) 0%,  rgba(255,  255,  255,  0.9) 100%);
    border-radius: .75rem;
    border: 1px solid rgba(226, 232, 240, .5);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
    font-weight: 500;
    color: #1e293b;
    text-align: center;
    min-width: 200px;
}
@media(max-width: 1024px) {
    .property-map {
    min-height: 350px;
}
}@keyframes mapShimmer {
    0%, 100% {
    opacity: .8;
    transform: scale(1);
}
50% {
    opacity: .6;
    transform: scale(1.02);
}
}.locations-list {
    background: linear-gradient(to bottom,  #ffffff 0%,  rgba(248,  250,  252,  0.5) 100%);
    overflow-y: auto;
    max-height: 300px;
    position: relative;
}
.locations-list::before {
    content: "";
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,  transparent 0%,  #e2e8f0 50%,  transparent 100%);
    z-index: 2;
}
.locations-list::-webkit-scrollbar {
    width: 8px;
}
.locations-list::-webkit-scrollbar-track {
    background: rgba(241, 245, 249, .5);
    border-radius: 4px;
}
.locations-list::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg,  #e2e8f0 0%,  rgba(37,  99,  235,  0.3) 100%);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, .3);
}
.locations-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg,  #94a3b8 0%,  rgba(37,  99,  235,  0.5) 100%);
}
.locations-list::-webkit-scrollbar-corner {
    background: #f1f5f9;
}
.location-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(241, 245, 249, .6);
    transition: all 250ms ease-in-out;
    position: relative;
    cursor: pointer;
    background: linear-gradient(135deg,  rgba(255,  255,  255,  0.8) 0%,  rgba(248,  250,  252,  0.4) 100%);
    backdrop-filter: blur(2px);
}
.location-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg,  #2563eb 0%,  rgba(37,  99,  235,  0.7) 100%);
    transition: width 250ms ease-in-out;
    border-radius: 0 2px 2px 0;
}
.location-item:hover {
    background: linear-gradient(135deg,  rgba(248,  250,  252,  0.95) 0%,  rgba(255,  255,  255,  0.8) 100%);
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1), inset 0 1px 0 rgba(255, 255, 255, .5);
}
.location-item:hover::before {
    width: 4px;
}
.location-item:last-child {
    border-bottom: none;
}
.location-item[data-status=available]::before {
    background: linear-gradient(135deg,  #10b981 0%,  rgba(16,  185,  129,  0.7) 100%);
}
.location-item[data-status=pending]::before {
    background: linear-gradient(135deg,  #f59e0b 0%,  rgba(245,  158,  11,  0.7) 100%);
}
.location-item[data-status=occupied]::before {
    background: linear-gradient(135deg,  #2563eb 0%,  rgba(37,  99,  235,  0.7) 100%);
}
.location-item[data-status=maintenance]::before {
    background: linear-gradient(135deg,  #ef4444 0%,  rgba(239,  68,  68,  0.7) 100%);
}
.location-marker {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg,  rgba(255,  255,  255,  0.9) 0%,  rgba(241,  245,  249,  0.8) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1), inset 0 1px 0 rgba(255, 255, 255, .8);
    border: 2px solid rgba(226, 232, 240, .3);
    transition: all 250ms ease-in-out;
}
.location-marker::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%,  rgba(255,  255,  255,  0.6) 0%,  transparent 70%);
    opacity: .8;
}
.location-item:hover .location-marker {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15), inset 0 1px 0 rgba(255, 255, 255, .9);
}
.location-marker i {
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0,  0,  0,  0.1));
}
.location-marker i.text-success {
    color: #10b981;
}
.location-marker i.text-warning {
    color: #f59e0b;
}
.location-marker i.text-primary {
    color: #2563eb;
}
.location-marker i.text-danger {
    color: #ef4444;
}
.location-info {
    flex: 1;
    min-width: 0;
}
.location-info h4 {
    margin: 0 0 .25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
}
.location-info .location-address {
    margin: 0 0 .5rem 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .25rem;
    color: #64748b;
    font-size: .875rem;
}
.location-info .location-address i {
    color: #94a3b8;
    font-size: .75rem;
    margin-top: 2px;
}
.location-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
@media(max-width: 480px) {
    .location-details {
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
}
}.location-price {
    font-size: .875rem;
    font-weight: 600;
    color: #2563eb;
    background: linear-gradient(135deg,  rgba(37,  99,  235,  0.15) 0%,  rgba(37,  99,  235,  0.08) 100%);
    padding: .25rem .5rem;
    border-radius: .5rem;
    white-space: nowrap;
    border: 1px solid rgba(37, 99, 235, .2);
    box-shadow: 0 1px 3px rgba(37, 99, 235, .1);
    position: relative;
    overflow: hidden;
}
.location-price::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,  transparent,  rgba(37,  99,  235,  0.1),  transparent);
    transition: left .6s;
}
.location-item:hover .location-price::before {
    left: 100%}
.location-status {
    font-size: .75rem;
    font-weight: 600;
    padding: .25rem .5rem;
    border-radius: .5rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}
.location-status::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,  rgba(255,  255,  255,  0.2) 0%,  transparent 100%);
    opacity: 0;
    transition: opacity 150ms ease-in-out;
}
.location-item:hover .location-status::before {
    opacity: 1;
}
.location-status.available {
    background: linear-gradient(135deg,  rgba(16,  185,  129,  0.15) 0%,  rgba(16,  185,  129,  0.1) 100%);
    color: #0c8a60;
    border: 1px solid rgba(16, 185, 129, .3);
}
.location-status.pending {
    background: linear-gradient(135deg,  rgba(245,  158,  11,  0.15) 0%,  rgba(245,  158,  11,  0.1) 100%);
    color: #c57f08;
    border: 1px solid rgba(245, 158, 11, .3);
}
.location-status.occupied {
    background: linear-gradient(135deg,  rgba(37,  99,  235,  0.15) 0%,  rgba(37,  99,  235,  0.1) 100%);
    color: #134cca;
    border: 1px solid rgba(37, 99, 235, .3);
}
.location-status.maintenance {
    background: linear-gradient(135deg,  rgba(239,  68,  68,  0.15) 0%,  rgba(239,  68,  68,  0.1) 100%);
    color: #eb1515;
    border: 1px solid rgba(239, 68, 68, .3);
}
.location-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(12px);
    transition: all 250ms ease-in-out;
}
.location-item:hover .location-actions {
    opacity: 1;
    transform: translateX(0);
}
.location-actions .btn-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,  rgba(255,  255,  255,  0.9) 0%,  rgba(248,  250,  252,  0.8) 100%);
    border: 1px solid rgba(226, 232, 240, .5);
    border-radius: .5rem;
    color: #64748b;
    cursor: pointer;
    transition: all 150ms ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}
.location-actions .btn-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,  rgba(37,  99,  235,  0.1) 0%,  transparent 100%);
    opacity: 0;
    transition: opacity 150ms ease-in-out;
}
.location-actions .btn-icon:hover {
    background: linear-gradient(135deg,  #2563eb 0%,  #1555e2 100%);
    border-color: #2563eb;
    color: #fff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 99, 235, .3);
}
.location-actions .btn-icon:hover::before {
    opacity: 1;
}
.location-actions .btn-icon:active {
    transform: translateY(-1px) scale(1.02);
}
.location-actions .btn-icon i {
    font-size: .875rem;
    position: relative;
    z-index: 1;
}
.status-filter .filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: .5rem;
    color: #1e293b;
    font-size: .875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 150ms ease-in-out;
}
.status-filter .filter-btn:hover {
    border-color: #2563eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
}
.status-filter .filter-btn i {
    font-size: .75rem;
    transition: transform 150ms ease-in-out;
}
.status-filter.active .filter-btn {
    border-color: #2563eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
}
.status-filter.active .filter-btn i {
    transform: rotate(180deg);
}
.status-filter .status-filter-dropdown {
    min-width: 200px;
}
.status-filter .status-filter-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding: .5rem 1rem;
    border-radius: .375rem;
    margin: .25rem;
    transition: all 150ms ease-in-out;
}
.status-filter .status-filter-dropdown .dropdown-item:hover {
    background-color: #f1f5f9;
    transform: translateX(2px);
}
.status-filter .status-filter-dropdown .dropdown-item.active {
    background-color: rgba(37, 99, 235, .1);
    border-left: 3px solid #2563eb;
    color: #2563eb;
}
.status-filter .status-filter-dropdown .dropdown-item .count {
    background-color: #e2e8f0;
    color: #64748b;
    font-size: .75rem;
    padding: 2px .25rem;
    border-radius: .375rem;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}
.status-filter .status-filter-dropdown .dropdown-item.active .count {
    background-color: #2563eb;
    color: #fff;
}
@media(max-width: 768px) {
    .locations-card .card-header {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}
.locations-card .card-header h3 {
    text-align: center;
}
.location-item {
    padding: 1rem;
}
.location-item .location-actions {
    opacity: 1;
    transform: translateX(0);
    position: static;
}
.location-marker {
    width: 36px;
    height: 36px;
}
.location-info h4 {
    font-size: .875rem;
}
}.activities-locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
@media(max-width: 1200px) {
    .activities-locations-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
}
}.properties-locations-grid {
    margin-bottom: 1.5rem;
}
@keyframes slideInLocation {
    from {
    opacity: 0;
    transform: translateX(-20px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}.location-item {
    animation: slideInLocation .3s ease-out;
    animation-fill-mode: both;
}
.location-item:nth-child(1) {
    animation-delay: 0.05s;
}
.location-item:nth-child(2) {
    animation-delay: 0.1s;
}
.location-item:nth-child(3) {
    animation-delay: 0.15s;
}
.location-item:nth-child(4) {
    animation-delay: 0.2s;
}
.location-item:nth-child(5) {
    animation-delay: 0.25s;
}
.location-item:nth-child(6) {
    animation-delay: 0.3s;
}
.location-item:nth-child(7) {
    animation-delay: 0.35s;
}
.location-item:nth-child(8) {
    animation-delay: 0.4s;
}
.location-item:nth-child(9) {
    animation-delay: 0.45s;
}
.location-item:nth-child(10) {
    animation-delay: 0.5s;
}
body.dark-mode {
    background-color: #0f172a;
    color: #fff;
}
body.dark-mode .main-content {
    background-color: #0f172a;
}
body.dark-mode .header {
    background-color: #1e293b;
    border-color: rgba(255, 255, 255, .1);
}
body.dark-mode .stat-card, body.dark-mode .chart-card, body.dark-mode .status-card, body.dark-mode .activities-card, body.dark-mode .table-card {
    background-color: #1e293b;
    border-color: rgba(255, 255, 255, .1);
}
body.dark-mode .btn.btn-outline {
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    border-color: rgba(255, 255, 255, .2);
}
body.dark-mode .btn.btn-outline:hover:not(:disabled) {
    background-color: #475569;
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
}
body.dark-mode .btn.btn-outline:active:not(:disabled) {
    background-color: #64748b;
}
body.dark-mode .btn.btn-outline:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .1);
    border-color: #3b82f6;
}
body.dark-mode .locations-card {
    background-color: #1e293b;
    border-color: rgba(255, 255, 255, .1);
}
body.dark-mode .locations-card .card-header {
    background: linear-gradient(135deg,  #475569 0%,  rgba(59,  130,  246,  0.05) 100%);
    border-bottom-color: rgba(255, 255, 255, .1);
}
body.dark-mode .locations-list {
    background-color: #0f172a;
}
body.dark-mode .locations-list::-webkit-scrollbar-track {
    background: #475569;
}
body.dark-mode .locations-list::-webkit-scrollbar-thumb {
    background-color: #64748b;
}
body.dark-mode .locations-list::-webkit-scrollbar-thumb:hover {
    background-color: #94a3b8;
}
body.dark-mode .location-item {
    border-bottom-color: rgba(255, 255, 255, .1);
}
body.dark-mode .location-item:hover {
    background-color: #475569;
}
body.dark-mode .location-marker {
    background-color: #475569;
}
body.dark-mode .location-marker::before {
    background: radial-gradient(circle,  rgba(30,  41,  59,  0.3) 0%,  transparent 70%);
}
body.dark-mode .location-info h4 {
    color: #fff;
}
body.dark-mode .location-info .location-address {
    color: #64748b;
}
body.dark-mode .location-info .location-address i {
    color: #94a3b8;
}
body.dark-mode .location-price {
    background-color: rgba(59, 130, 246, .2);
    color: #3b82f6;
}
body.dark-mode .location-actions .btn-icon {
    border-color: rgba(255, 255, 255, .2);
    color: #64748b;
}
body.dark-mode .location-actions .btn-icon:hover {
    background-color: #3b82f6;
    border-color: #3b82f6;
    color: #1e293b;
}
body.dark-mode .status-filter .filter-btn {
    background-color: #0f172a;
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
}
body.dark-mode .status-filter .filter-btn:hover {
    border-color: #3b82f6;
}
body.dark-mode .status-filter.active .filter-btn {
    border-color: #3b82f6;
}
body.dark-mode .status-filter .status-filter-dropdown .dropdown-item:hover {
    background-color: #475569;
}
body.dark-mode .status-filter .status-filter-dropdown .dropdown-item.active {
    background-color: rgba(59, 130, 246, .2);
    border-left-color: #3b82f6;
    color: #3b82f6;
}
body.dark-mode .status-filter .status-filter-dropdown .dropdown-item .count {
    background-color: #475569;
    color: #64748b;
}
body.dark-mode .status-filter .status-filter-dropdown .dropdown-item.active .count {
    background-color: #3b82f6;
    color: #1e293b;
}
body.dark-mode .property-map {
    background: linear-gradient(135deg,  #475569 0%,  #0f172a 50%,  #475569 100%);
    color: #64748b;
}
body.dark-mode .property-map::before {
    background-image: radial-gradient(circle at 25% 25%,  rgba(59,  130,  246,  0.1) 0%,  transparent 50%), radial-gradient(circle at 75% 75%,  rgba(16,  185,  129,  0.1) 0%,  transparent 50%), radial-gradient(circle at 50% 50%,  rgba(245,  158,  11,  0.1) 0%,  transparent 50%);
}
body.dark-mode .property-map::after {
    background-color: rgba(30, 41, 59, .9);
    border-color: rgba(255, 255, 255, .1);
    color: #fff;
}
.sidebar {
    transition: transform 300ms ease-in-out;
}

.sidebar-inner {
}

.sidebar .logo,
.sidebar-header {
}

.sidebar-logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #fff;
}

.sidebar .nav-menu {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sidebar-footer {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.sidebar-footer .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease;
}

.sidebar-footer .nav-link i {
    color: inherit;
}

.sidebar-footer .nav-link:hover {
    background: #fff;
    color: #ffffff;
    font-weight: 600;
    width: 100%;
    color: #0133a0 !important;
}

.sidebar-footer .nav-link:hover i {
    color: #0133a0 !important;
}

.main-content {
    flex: 1;
    margin-left: 260px;
    min-height: 100vh;
    transition: margin-left 300ms ease-in-out;
}

/* Desktop sidebar collapse */
@media (min-width: 768px) {
    body.sidebar-collapsed .sidebar {
        transform: translateX(-100%);
    }
    
    body.sidebar-collapsed .main-content {
        margin-left: 0;
    }
}

.header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: #fff;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
    /* flex: 1 1 auto; */
    min-width: 0;
}
.header-left-primary {
    display: flex;
    align-items: center;
    gap: .75rem;
    width: 100%;
}
.header-left-primary .header-search {
    flex: 1 1 320px;
    max-width: 460px;
}
.header-left h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}
.header .sidebar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: none;
    background: #f1f5f9;
    color: #1e293b;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease;
}
.header .sidebar-toggle:hover {
    background: #e2e8f0;
    color: #0b2f8c;
}
.header-search {
    position: relative;
    width: 100%;
}
.header-search i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 16px;
}
.header-search input {
    width: 100%;
    padding: 12px 18px 12px 46px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: .95rem;
    color: #1e293b;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}
.header-search input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
    background: #fff;
}
.header-search input::placeholder {
    color: #94a3b8;
}
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    flex-shrink: 0;
    margin-left: auto;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}
.breadcrumb-content {
    display: flex;
    flex-direction: column;
}
.breadcrumb-content h1 {
    color: #1e293b;
    font-size: 18px; 
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}
.breadcrumb-content .page-subtitle {
    font-size: .875rem;
    color: #64748b;
    margin: 0;
    font-weight: 400;
    margin-top: .25rem;
}
.property-location {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .5rem;
    color: #64748b;
    font-size: .875rem;
    margin-top: .25rem;
}
.property-location i {
    font-size: .75rem;
}
.back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #e2e8f0;
    border-radius: .5rem;
    color: #64748b;
    cursor: pointer;
    transition: all 150ms ease-in-out;
}
.back-btn:hover {
    background-color: #f1f5f9;
    border-color: #64748b;
    color: #1e293b;
}
.property-status-badge {
    padding: .25rem .5rem;
    border-radius: 1rem;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .025em;
}
.property-status-badge.available {
    background-color: #10b981;
    color: #fff;
}
.property-status-badge.assigned {
    background-color: #2563eb;
    color: #fff;
}
.property-status-badge.pending {
    background-color: #f59e0b;
    color: #fff;
}
.property-status-badge.maintenance {
    background-color: #ef4444;
    color: #fff;
}
.header .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}
.header .header-right .search-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.header .header-right .search-box i {
    position: absolute;
    left: 1rem;
    color: #94a3b8;
    z-index: 1;
}
.header .header-right .search-box input {
    width: 300px;
    padding: .5rem 1rem;
    padding-left: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: .5rem;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .875rem;
    background-color: #f1f5f9;
    color: #1e293b;
    transition: all 150ms ease-in-out;
}
.header .header-right .search-box input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
    background-color: #fff;
}
.header .header-right .search-box input::placeholder {
    color: #94a3b8;
}
.notification-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    border: none;
    border-radius: .5rem;
    background-color: rgba(0, 0, 0, 0);
    color: #64748b;
    cursor: pointer;
    transition: all 150ms ease-in-out;
}
.notification-btn:hover {
    background-color: #f1f5f9;
    color: #1e293b;
}
.notification-badge {
    position: absolute;
    top: 0px;
    right: -1px;
    background-color: #ef4444;
    color: #fff;
    font-size: .625rem;
    font-weight: 600;
    padding: .125rem .25rem;
    border-radius: .375rem;
    min-width: 1rem;
    height: 1rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.profile-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .5rem;
    padding: .25rem .5rem;
    border: none;
    border-radius: .5rem;
    background-color: rgba(0, 0, 0, 0);
    color: #64748b;
    cursor: pointer;
    transition: all 150ms ease-in-out;
    font-size: .875rem;
    font-weight: 500;
}
.profile-btn:hover {
    background-color: #f1f5f9;
    color: #1e293b;
}
.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}
.profile-avatar-large {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-trigger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    border-radius: .5rem;
    transition: all 150ms ease-in-out;
    color: #64748b;
}
.dropdown-trigger:hover {
    background-color: #f1f5f9;
    color: #1e293b;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: .75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 200ms ease-in-out;
    min-width: 280px;
    max-height: 400px;
    overflow: hidden;
}
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.dropdown-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    background-color: #f8fafc;
}
.dropdown-body {
    max-height: 300px;
    overflow-y: auto;
    padding: .5rem 0;
}
.dropdown-footer {
    padding: .5rem 1.5rem;
    border-top: 1px solid #f1f5f9;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .5rem;
    padding: .5rem 1.5rem;
    color: #1e293b;
    text-decoration: none;
    transition: all 150ms ease-in-out;
    font-size: .875rem;
}
.dropdown-item:hover {
    background-color: #f1f5f9;
    color: #1e293b;
}
.dropdown-divider {
    height: 1px;
    background-color: #f1f5f9;
    margin: .5rem 0;
}
.notification-dropdown {
    width: 380px;
    max-width: 95vw;
}
.notification-dropdown .dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8fafc;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
    border-radius: .75rem .75rem 0 0;
}
.notification-dropdown .dropdown-header h4 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
}
.notification-dropdown .dropdown-body {
    max-height: 320px;
    overflow-y: auto;
    padding: 0;
}
.notification-dropdown .dropdown-body::-webkit-scrollbar {
    width: 6px;
}
.notification-dropdown .dropdown-body::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}
.notification-dropdown .dropdown-body::-webkit-scrollbar-thumb {
    background-color: #e2e8f0;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, .2);
}
.notification-dropdown .dropdown-body::-webkit-scrollbar-thumb:hover {
    background-color: #94a3b8;
}
.notification-dropdown .dropdown-body::-webkit-scrollbar-corner {
    background: #f1f5f9;
}
.notification-dropdown .dropdown-footer {
    background-color: #fff;
    border-top: 1px solid #f1f5f9;
    border-radius: 0 0 .75rem .75rem;
    padding: 1rem 1.5rem;
}
.notification-dropdown .dropdown-footer .view-all-notifications {
    color: #2563eb;
    font-weight: 500;
    font-size: .875rem;
    text-decoration: none;
    transition: color 150ms ease-in-out;
}
.notification-dropdown .dropdown-footer .view-all-notifications:hover {
    color: #1d4ed8;
}
.notification-dropdown .dropdown-footer .mark-all-read {
    background: none;
    border: none;
    color: #64748b;
    font-size: .875rem;
    cursor: pointer;
    padding: .25rem .5rem;
    border-radius: .375rem;
    transition: all 150ms ease-in-out;
}
.notification-dropdown .dropdown-footer .mark-all-read:hover {
    background-color: #f1f5f9;
    color: #1e293b;
}
.notification-count {
    font-size: .75rem;
    color: #64748b;
    background-color: #e2e8f0;
    padding: .25rem .5rem;
    border-radius: .375rem;
    font-weight: 500;
}
.notification-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(241, 245, 249, .6);
    transition: all 250ms ease-in-out;
    position: relative;
    background: linear-gradient(135deg,  rgba(255,  255,  255,  0.5) 0%,  rgba(248,  250,  252,  0.3) 100%);
    backdrop-filter: blur(2px);
    margin: .25rem .5rem;
    border-radius: .5rem;
    cursor: pointer;
}
.notification-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,  rgba(37,  99,  235,  0.02) 0%,  transparent 100%);
    opacity: 0;
    transition: opacity 250ms ease-in-out;
    border-radius: .5rem;
}
.notification-item:hover {
    background: linear-gradient(135deg,  rgba(248,  250,  252,  0.9) 0%,  rgba(255,  255,  255,  0.7) 100%);
    transform: translateX(4px) translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08), 0 2px 4px rgba(0, 0, 0, .06);
    border-color: rgba(226, 232, 240, .8);
}
.notification-item:hover::after {
    opacity: 1;
}
.notification-item:last-child {
    border-bottom: 1px solid rgba(241, 245, 249, .6);
    margin-bottom: .5rem;
}
.notification-item.unread {
    background: linear-gradient(135deg,  rgba(37,  99,  235,  0.08) 0%,  rgba(59,  130,  246,  0.04) 100%);
    border: 1px solid rgba(37, 99, 235, .2);
    box-shadow: 0 2px 8px rgba(37, 99, 235, .1), inset 0 1px 0 rgba(59, 130, 246, .2);
}
.notification-item.unread::before {
    content: "";
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle,  #2563eb 0%,  #134cca 100%);
    border-radius: 50%;
    animation: notificationPulse 2s infinite;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, .3), 0 0 0 4px rgba(37, 99, 235, .1);
}
.notification-item.unread:hover {
    background: linear-gradient(135deg,  rgba(37,  99,  235,  0.12) 0%,  rgba(59,  130,  246,  0.06) 100%);
    border-color: rgba(37, 99, 235, .3);
    box-shadow: 0 6px 16px rgba(37, 99, 235, .15), 0 2px 4px rgba(37, 99, 235, .1), inset 0 1px 0 rgba(59, 130, 246, .3);
}
@keyframes notificationPulse {
    0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, .3), 0 0 0 4px rgba(37, 99, 235, .1);
}
50% {
    opacity: .8;
    transform: scale(1.1);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .4), 0 0 0 6px rgba(37, 99, 235, .2);
}
}.notification-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .75rem;
    background: linear-gradient(135deg,  rgba(255,  255,  255,  0.9) 0%,  rgba(241,  245,  249,  0.7) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08), inset 0 1px 0 rgba(255, 255, 255, .6);
    border: 1px solid rgba(226, 232, 240, .3);
    transition: all 250ms ease-in-out;
}
.notification-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%,  rgba(255,  255,  255,  0.4) 0%,  transparent 70%);
    opacity: .8;
}
.notification-item:hover .notification-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .8);
    border-color: rgba(226, 232, 240, .5);
}
.notification-icon i {
    font-size: 1.125rem;
}
.notification-icon i.text-success {
    color: #10b981;
}
.notification-icon i.text-warning {
    color: #f59e0b;
}
.notification-icon i.text-danger {
    color: #ef4444;
}
.notification-icon i.text-info {
    color: #2563eb;
}
.notification-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    align-items: flex-start;
}
.notification-title {
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    font-size: .875rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
}
.notification-item.unread .notification-title {
    color: #151d2a;
}
.notification-text {
    color: #64748b;
    font-size: .75rem;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: .9;
}
.notification-item:hover .notification-text {
    opacity: 1;
    color: #4f5b6d;
}
.notification-item.unread .notification-text {
    color: #59687c;
    opacity: 1;
}
.notification-time {
    color: #94a3b8;
    font-size: .75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .25rem;
}
.notification-time::before {
    content: "•";
    color: rgba(148, 163, 184, .6);
    font-size: .6em;
}
.notification-item:hover .notification-time {
    color: #667b99;
}
.notification-item.unread .notification-time {
    color: #2563eb;
    font-weight: 600;
}
.notification-item.unread .notification-time::before {
    color: rgba(37, 99, 235, .7);
}
.notification-actions {
    flex-shrink: 0;
    margin-left: .5rem;
    transition: all 250ms ease-in-out;
}
.notification-actions .btn-sm {
    padding: .25rem .5rem;
    font-size: .75rem;
    min-height: 28px;
    border-radius: .5rem;
    white-space: nowrap;
    background: linear-gradient(135deg,  rgba(255,  255,  255,  0.9) 0%,  rgba(248,  250,  252,  0.8) 100%);
    border: 1px solid rgba(226, 232, 240, .5);
    color: #64748b;
    font-weight: 500;
    transition: all 150ms ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
}
.notification-actions .btn-sm::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,  transparent,  rgba(37,  99,  235,  0.1),  transparent);
    transition: left .4s;
}
.notification-actions .btn-sm:hover {
    background: linear-gradient(135deg,  #2563eb 0%,  #1555e2 100%);
    border-color: #2563eb;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(37, 99, 235, .25);
}
.notification-actions .btn-sm:hover::before {
    left: 100%}
.notification-actions .btn-sm:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(37, 99, 235, .3);
}
.profile-dropdown {
    width: 300px;
    max-width: 95vw;
}
.profile-dropdown .dropdown-header {
    background-color: #f8fafc;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
    border-radius: .75rem .75rem 0 0;
}
.profile-dropdown .dropdown-body {
    padding: .5rem 0;
    max-height: 400px;
    overflow-y: auto;
}
.profile-dropdown .dropdown-body::-webkit-scrollbar {
    width: 5px;
}
.profile-dropdown .dropdown-body::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 2px;
}
.profile-dropdown .dropdown-body::-webkit-scrollbar-thumb {
    background-color: #e2e8f0;
    border-radius: 2px;
}
.profile-dropdown .dropdown-body::-webkit-scrollbar-thumb:hover {
    background-color: #94a3b8;
}
.profile-dropdown .dropdown-item {
    padding: 1rem 1.5rem;
    margin: 0 .5rem;
    border-radius: .375rem;
    transition: all 150ms ease-in-out;
}
.profile-dropdown .dropdown-item:hover {
    background-color: #f1f5f9;
    transform: translateX(4px);
}
.profile-dropdown .dropdown-item.logout {
    color: #ef4444;
    margin-top: .5rem;
}
.profile-dropdown .dropdown-item.logout:hover {
    background-color: rgba(239, 68, 68, .1);
    color: #ef4444;
}
.profile-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}
.profile-details h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}
.profile-details p {
    margin: 0;
    font-size: .875rem;
    color: #64748b;
}

/* ------------------------------------------------------------------
   Error Pages
------------------------------------------------------------------ */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.08) 100%);
}

.error-page .main-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-card {
    max-width: 520px;
    background: #ffffff;
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.error-card h1 {
    margin: 24px 0 16px;
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
}

.error-card p {
    margin-bottom: 32px;
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.error-card .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg, #0a3cc9 0%, #003192 100%);
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(10, 60, 201, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.error-card .btn-primary:hover {
    box-shadow: 0 20px 38px rgba(10, 60, 201, 0.35);
    transform: translateY(-2px);
}

.error-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #ffffff;
    background: linear-gradient(135deg, #0a3cc9 0%, #003192 100%);
    box-shadow: 0 16px 38px rgba(10, 60, 201, 0.28);
}

@media (max-width: 640px) {
    .error-card {
        padding: 36px 24px;
    }

    .error-card h1 {
        font-size: 22px;
    }

    .error-card p {
        font-size: 15px;
    }
}
.profile-status {
    font-size: .75rem;
    padding: .25rem .5rem;
    border-radius: 1rem;
    font-weight: 600;
    margin-top: .25rem;
}
.profile-status.online {
    background-color: rgba(16, 185, 129, .2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, .3);
}
.profile-status.online::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    margin-right: .25rem;
    animation: pulse 2s infinite;
}
.toggle-switch {
    margin-left: auto;
}
.toggle-input {
    display: none;
}
.toggle-label {
    position: relative;
    display: block;
    width: 40px;
    height: 20px;
    background-color: #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 200ms ease-in-out;
}
.toggle-label::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 200ms ease-in-out;
}
.toggle-input:checked+.toggle-label {
    background-color: #2563eb;
}
.toggle-input:checked+.toggle-label::after {
    transform: translateX(20px);
}
@media(min-width: 768px)and (max-width: 1023px) {
    .sidebar {
    width: 260px;
}
.sidebar .nav-menu {
    padding: 1rem 1.5rem;
    padding-top: .5rem;
}
.sidebar .logo {
    padding: 1rem 1.5rem;
}
.main-content {
    margin-left: 260px;
}
.header {
    padding: 1.25rem 1.5rem;
}
.header-left {
    gap: .65rem;
}
.header-left-primary {
    gap: .65rem;
}
.header-left h1 {
    font-size: 1.35rem;
}
.header-right {
    gap: 1rem;
}
.header-search input {
    font-size: .9rem;
}
.breadcrumb-content h1 {
    font-size: 1.25rem;
}
.property-location {
    font-size: .8125rem;
}
.dropdown-menu {
    width: 320px;
    max-width: 90vw;
}
}@media(max-width: 767px) {
    .sidebar {
    transform: translateX(-100%);
    z-index: 9999;
}
.sidebar.active {
    transform: translateX(0);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04);
}
.sidebar .logo {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.sidebar .nav-menu {
    padding: 1rem 1.5rem;
    padding-top: .5rem;
}
.main-content {
    margin-left: 0;
    width: 100%}
.header {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1rem;
    gap: 1rem;
    position: relative;
}
.header-left {
    gap: .5rem;
    flex: 1;
    min-width: 0;
}
.header-left-primary {
    gap: .5rem;
}
.header-search {
    max-width: none;
}
.header-left h1 {
    font-size: 1.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
.header-right {
    width: 100%;
    justify-content: space-between;
    gap: .75rem;
}
.header-right .profile span,
.header-right .profile .fa-chevron-down {
    display: none;
}
.header-right .profile .profile-avatar {
    width: 38px;
    height: 38px;
}
}

.content-wrapper,
.content-list-section,
.add-properties {
    padding-inline: 40px;
    padding-block: 20px;
}

@media(max-width: 1024px) {
    body.sidebar-open .sidebar {
        transform: translateX(0);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04);
    }
    body.sidebar-open .sidebar-overlay {
        opacity: 1;
        visibility: visible;
    }
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
    display: none !important;
}

/* Views Mini Pager Styles */
.views-mini-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  margin: 32px 0;
}

.views-mini-pager__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.views-mini-pager__item {
  margin: 0;
  padding: 0;
  list-style: none;
}

.views-mini-pager__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #0133a0;
  text-decoration: none;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 120px;
  justify-content: center;
}

.views-mini-pager__link:hover {
  background: #0133a0;
  color: #ffffff;
  border-color: #0133a0;
  box-shadow: 0 4px 12px rgba(1, 51, 160, 0.2);
  transform: translateY(-2px);
}

.views-mini-pager__link:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(1, 51, 160, 0.15);
}

.views-mini-pager__link--previous {
  flex-direction: row;
}

.views-mini-pager__link--next {
  flex-direction: row;
}

.views-mini-pager__link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.views-mini-pager__link:hover i {
  transform: scale(1.2);
}

.views-mini-pager__current {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  background: #f8fafc;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  min-width: 100px;
  justify-content: center;
}

.views-mini-pager__text {
  display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .views-mini-pager {
    padding: 20px 0;
    margin: 24px 0;
  }

  .views-mini-pager__items {
    gap: 8px;
  }

  .views-mini-pager__link {
    padding: 8px 16px;
    font-size: 13px;
    min-width: 100px;
  }

  .views-mini-pager__current {
    padding: 8px 16px;
    font-size: 13px;
    min-width: 80px;
  }
}
