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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    min-height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease-out;
}

h1 {
    color: #f0f0f0;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    color: #d0d0d0;
    font-size: 1.1rem;
    font-weight: 300;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.card:nth-child(1) { 
    animation-delay: 0.1s;
}
.card:nth-child(2) { 
    animation-delay: 0.2s;
}
.card:nth-child(3) { 
    animation-delay: 0.3s;
}
.card:nth-child(4) { 
    animation-delay: 0.4s;
}
.card:nth-child(5) { 
    animation-delay: 0.5s;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0099ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px 0 rgba(0, 212, 255, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.4);
}

.card:hover::before {
    transform: scaleX(1);
}

.card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.card-title {
    color: #e8e8e8;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.card-description {
    color: #c0c0c0;
    font-size: 0.95rem;
    line-height: 1.6;
}

footer {
    text-align: center;
    margin-top: 0;
    padding: 30px 20px;
    color: #909090;
    font-size: 0.9rem;
    width: 100%;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    header {
        margin-bottom: 40px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .card {
        padding: 30px 20px;
    }

    .card:last-child {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .card-title {
        font-size: 1.25rem;
    }
}

/* Styles for content pages (like Matchstick USA memorial) */
.content-section {
    max-width: 960px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.images-container {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.images-container img {
    flex: 1;
    min-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.memorial-text {
    color: #d0d0d0;
    font-size: 1.1rem;
    line-height: 1.8em;
    text-align: center;
    margin: 30px 0;
}

.memorial-text.blessing {
    font-style: italic;
    color: #e8e8e8;
    font-size: 1.2rem;
    margin: 40px 0;
}

.memorial-text.years {
    color: #00d4ff;
    font-weight: 500;
    font-size: 1.3rem;
}

.spacer {
    height: 20px;
}

@media (max-width: 768px) {
    .images-container {
        flex-direction: column;
        gap: 15px;
    }

    .images-container img {
        min-width: 100%;
    }

    .memorial-text {
        font-size: 1rem;
    }

    .memorial-text.blessing {
        font-size: 1.1rem;
    }
}

/* Music player styles for Breakdown Band page */
.player-wrapper {
    padding: 40px 20px;
}

.player-header {
    max-width: 800px;
    margin: 0 auto 40px;
}

.player-header h1 {
    margin-bottom: 15px;
}

.player-header h2 {
    color: #c0c0c0;
    font-size: 1.3rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
}

.track-list {
    color: #909090;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.player {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    width: 410px;
    min-height: 480px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-radius: 15px;
    padding: 30px;
    margin: 0 auto;
}

@media screen and (max-width: 576px), (max-height: 500px) {
    .player {
        width: 95%;
        padding: 20px;
        margin-top: 30px;
        min-height: initial;
        padding-bottom: 30px;
        max-width: 400px;
    }
}

.player__top {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 4;
}

@media screen and (max-width: 576px), (max-height: 500px) {
    .player__top {
        flex-wrap: wrap;
    }
}

.player-cover {
    width: 300px;
    height: 300px;
    margin-left: -70px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    border-radius: 15px;
    z-index: 1;
}

@media screen and (max-width: 576px), (max-height: 500px) {
    .player-cover {
        margin-top: -70px;
        margin-bottom: 25px;
        width: 290px;
        height: 250px;
        margin-left: auto;
        margin-right: auto;
    }
}

.player-cover__item {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    position: absolute;
    left: 0;
    top: 0;
}

.player-cover__item:before {
    content: "";
    background: inherit;
    width: 100%;
    height: 100%;
    box-shadow: 0px 10px 40px 0px rgba(0, 212, 255, 0.3);
    display: block;
    z-index: 1;
    position: absolute;
    top: 30px;
    transform: scale(0.9);
    filter: blur(10px);
    opacity: 0.9;
    border-radius: 15px;
}

.player-cover__item:after {
    content: "";
    background: inherit;
    width: 100%;
    height: 100%;
    box-shadow: 0px 10px 40px 0px rgba(0, 212, 255, 0.3);
    display: block;
    z-index: 2;
    position: absolute;
    border-radius: 15px;
}

.player-controls {
    flex: 1;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 576px), (max-height: 500px) {
    .player-controls {
        flex-direction: row;
        padding-left: 0;
        width: 100%;
        flex: unset;
    }
}

.player-controls__item {
    display: inline-flex;
    font-size: 30px;
    padding: 5px;
    margin-bottom: 10px;
    color: #909090;
    cursor: pointer;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 576px), (max-height: 500px) {
    .player-controls__item {
        font-size: 26px;
        padding: 5px;
        margin-right: 10px;
        width: 40px;
        height: 40px;
        margin-bottom: 0;
    }
}

.player-controls__item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0.5);
    opacity: 0;
    box-shadow: 0px 5px 10px 0px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 500px) {
    .player-controls__item:hover {
        color: #00d4ff;
    }
    .player-controls__item:hover::before {
        opacity: 1;
        transform: scale(1.3);
    }
}

.player-controls__item .icon {
    position: relative;
    z-index: 2;
}

.player-controls__item.-xl {
    margin-bottom: 0;
    font-size: 95px;
    filter: drop-shadow(0 11px 6px rgba(0, 212, 255, 0.3));
    color: #00d4ff;
    width: auto;
    height: auto;
    display: inline-flex;
}

@media screen and (max-width: 576px), (max-height: 500px) {
    .player-controls__item.-xl {
        margin-left: auto;
        font-size: 75px;
        margin-right: 0;
    }
}

.player-controls__item.-xl:before {
    display: none;
}

.player-controls__item.-favorite.active {
    color: #ff0080;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

[v-cloak] {
    display: none;
}

.progress {
    width: 100%;
    margin-top: -15px;
    user-select: none;
}

.progress__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.progress__duration {
    color: #c0c0c0;
    font-weight: 700;
    font-size: 20px;
    opacity: 0.7;
}

.progress__time {
    margin-top: 2px;
    color: #c0c0c0;
    font-weight: 700;
    font-size: 16px;
    opacity: 0.7;
}

.progress__bar {
    height: 6px;
    width: 100%;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.2);
    display: inline-block;
    border-radius: 10px;
}

.progress__current {
    height: inherit;
    width: 0%;
    background-color: #00d4ff;
    border-radius: 10px;
}

.album-info {
    color: #e8e8e8;
    flex: 1;
    padding-right: 60px;
    user-select: none;
}

@media screen and (max-width: 576px), (max-height: 500px) {
    .album-info {
        padding-right: 30px;
    }
}

.album-info__name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    line-height: 1.3em;
}

@media screen and (max-width: 576px), (max-height: 500px) {
    .album-info__name {
        font-size: 18px;
        margin-bottom: 9px;
    }
}

.album-info__track {
    font-weight: 400;
    font-size: 20px;
    opacity: 0.8;
    line-height: 1.3em;
    min-height: 52px;
    color: #c0c0c0;
}

@media screen and (max-width: 576px), (max-height: 500px) {
    .album-info__track {
        font-size: 18px;
        min-height: 50px;
    }
}

.scale-out-enter-active {
    transition: all 0.35s ease-in-out;
}

.scale-out-leave-active {
    transition: all 0.35s ease-in-out;
}

.scale-out-enter {
    transform: scale(0.55);
    pointer-events: none;
    opacity: 0;
}

.scale-out-leave-to {
    transform: scale(1.2);
    pointer-events: none;
    opacity: 0;
}

.scale-in-enter-active {
    transition: all 0.35s ease-in-out;
}

.scale-in-leave-active {
    transition: all 0.35s ease-in-out;
}

.scale-in-enter {
    transform: scale(1.2);
    pointer-events: none;
    opacity: 0;
}

.scale-in-leave-to {
    transform: scale(0.55);
    pointer-events: none;
    opacity: 0;
}

/* Home button for navigation */
.home-button {
    position: fixed;
    top: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0.6;
}

.home-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
    opacity: 1;
}

.home-button svg {
    width: 24px;
    height: 24px;
    stroke: #909090;
    fill: none;
    stroke-width: 2;
    transition: stroke 0.3s ease;
}

.home-button:hover svg {
    stroke: #00d4ff;
}

@media (max-width: 768px) {
    .home-button {
        width: 45px;
        height: 45px;
        top: 20px;
        left: 20px;
    }
    
    .home-button svg {
        width: 20px;
        height: 20px;
    }
}

/* My Apt Key - Dark Mode DataTables Custom Styles */
/* Page wrapper for My Apt Key */
#wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Loader styling */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #00d4ff;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #0099ff;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #c0c0c0;
    animation: spin 1.5s linear infinite;
}

.loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    z-index: 9998;
}

.loader-section.section-left {
    left: 0;
}

.loader-section.section-right {
    right: 0;
}

/* DataTable Dark Theme Override */
table.dataTable {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
    overflow: hidden;
    border-spacing: 0 8px !important;
}

/* Table Header */
table.dataTable thead th,
table.dataTable thead td {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #e8e8e8 !important;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3) !important;
    font-weight: 600;
    padding: 20px 15px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Table Body */
table.dataTable tbody td {
    background: rgba(255, 255, 255, 0.03) !important;
    color: #c0c0c0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 18px 15px;
    font-size: 1rem;
    vertical-align: middle;
}

/* Table rows with spacing */
table.dataTable tbody tr {
    transition: all 0.3s ease;
}

/* Links in table */
table.dataTable tbody td a {
    color: #00d4ff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.05rem;
}

table.dataTable tbody td a:hover {
    color: #0099ff !important;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

/* Stripe rows */
table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd {
    background: rgba(255, 255, 255, 0.02) !important;
}

/* Hover effect - more prominent */
table.dataTable.hover tbody tr:hover,
table.dataTable.display tbody tr:hover {
    background: rgba(0, 212, 255, 0.15) !important;
    transform: scale(1.01);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

/* Child row details - MODERNIZED */
table.dataTable tbody tr.child {
    background: rgba(0, 212, 255, 0.08) !important;
    border-left: 3px solid #00d4ff;
}

table.dataTable tbody tr.child ul.dtr-details {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin: 10px 0;
}

table.dataTable tbody tr.child ul.dtr-details li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #c0c0c0;
    padding: 12px 0;
    font-size: 1rem;
}

table.dataTable tbody tr.child ul.dtr-details li:last-child {
    border-bottom: none;
}

table.dataTable tbody tr.child span.dtr-title {
    color: #00d4ff;
    font-weight: 600;
    min-width: 100px;
}

/* CUSTOM EXPAND/COLLAPSE ICONS */
/* Hide default icons */
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
    content: '' !important;
    display: none !important;
}

/* Add custom SVG icon for collapsed state */
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control {
    position: relative;
    cursor: pointer;
    padding-left: 35px !important;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control::after,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d4ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Expanded state icon */
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td.dtr-control::after,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th.dtr-control::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d4ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    opacity: 1;
}

/* Hover effect on control */
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:hover::after,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* Apartment images */
.img-apt {
    float: left;
    margin-top: 10px;
    margin-right: 15px;
    margin-bottom: 10px;
    max-width: 200px;
    max-height: 150px;
    width: auto;
    height: auto;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Property info styling */
.property-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    min-height: 150px;
    color: #c0c0c0;
}

.property-info .info {
    margin-bottom: 10px;
}

.property-info label {
    color: #00d4ff;
    font-weight: 600;
    margin-right: 5px;
}

.property-info .info-space {
    color: #e8e8e8;
    padding-right: 20px;
}

/* DataTables wrapper controls */
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    color: #c0c0c0 !important;
}

/* Search input */
.dataTables_wrapper .dataTables_filter input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #e8e8e8 !important;
    border-radius: 6px;
    padding: 8px 12px;
}

.dataTables_wrapper .dataTables_filter input::placeholder {
    color: #909090;
}

.dataTables_wrapper .dataTables_filter input:focus {
    outline: none;
    border-color: rgba(0, 212, 255, 0.4) !important;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

/* Length select */
.dataTables_wrapper .dataTables_length select {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #e8e8e8 !important;
    border-radius: 6px;
    padding: 6px 10px;
}

/* Pagination */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    color: #c0c0c0 !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: #00d4ff !important;
    background: rgba(0, 212, 255, 0.1) !important;
    border: 1px solid rgba(0, 212, 255, 0.3) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    color: #fff !important;
    background: rgba(0, 212, 255, 0.3) !important;
    border: 1px solid rgba(0, 212, 255, 0.5) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
    color: #606060 !important;
    background: rgba(255, 255, 255, 0.02) !important;
}

/* Sorting icons */
table.dataTable thead .sorting:before,
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc:after {
    color: #909090 !important;
    opacity: 0.5;
}

table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:after {
    opacity: 1 !important;
    color: #00d4ff !important;
}

/* Responsive control icons */
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
    color: #00d4ff !important;
    opacity: 0.7;
}

table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th.dtr-control:before {
    color: #00d4ff !important;
    opacity: 1;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    #wrapper {
        padding: 10px;
    }
    
    table.dataTable thead th,
    table.dataTable thead td {
        padding: 10px 5px;
        font-size: 0.9rem;
    }
    
    table.dataTable tbody td {
        padding: 8px 5px;
        font-size: 0.9rem;
    }
    
    .property-info {
        width: 100%;
    }
    
    .img-apt {
        max-width: 150px;
        max-height: 150px;
    }
}