.tien-phong-plugin-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.tien-phong-plugin-wrapper {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --secondary: #64748b;
    --light: #f8fafc;
    --lighter: #f1f5f9;
    --dark: #1e293b;
    --border: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.16);
    --radius: 12px;
    --radius-lg: 16px;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.tien-phong-plugin-wrapper .fixed-actions {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.tien-phong-plugin-wrapper .fixed-actions .btn {
    box-shadow: var(--shadow-lg);
}

.tien-phong-plugin-wrapper .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 24px;
}

.tien-phong-plugin-wrapper .screen {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    max-width: 600px;
    margin: 40px auto;
}

.tien-phong-plugin-wrapper .screen h2 {
    color: var(--dark);
    font-size: 24px;
    margin-bottom: 10px;
}

.tien-phong-plugin-wrapper .screen p {
    color: var(--secondary);
    margin-bottom: 25px;
}

.tien-phong-plugin-wrapper .screen .btn {
    margin: 5px;
}

.tien-phong-plugin-wrapper .btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
    text-decoration: none;
}

.tien-phong-plugin-wrapper .btn-primary {
    background: var(--primary);
    color: white;
    width: auto;
}

.tien-phong-plugin-wrapper .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}

.tien-phong-plugin-wrapper .btn-secondary {
    background: var(--lighter);
    color: var(--dark);
}

.tien-phong-plugin-wrapper .btn-secondary:hover {
    background: var(--border);
}

.tien-phong-plugin-wrapper .btn-success {
    background: var(--success);
    color: white;
}

.tien-phong-plugin-wrapper .btn-success:hover {
    background: #059669;
}

.tien-phong-plugin-wrapper .btn-danger {
    background: var(--danger);
    color: white;
}

.tien-phong-plugin-wrapper .btn-danger:hover {
    background: #dc2626;
}

.tien-phong-plugin-wrapper .btn-small {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 6px;
    border: 2px solid var(--border);
}

.tien-phong-plugin-wrapper .app-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    gap: 16px;
}

.tien-phong-plugin-wrapper .user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tien-phong-plugin-wrapper .user-info img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.tien-phong-plugin-wrapper .user-info div {
    line-height: 1.4;
}

.tien-phong-plugin-wrapper .user-name {
    font-weight: 600;
    color: var(--dark);
}

.tien-phong-plugin-wrapper .user-welcome {
    font-size: 13px;
    color: var(--secondary);
}

.tien-phong-plugin-wrapper .filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
}

.tien-phong-plugin-wrapper .filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tien-phong-plugin-wrapper .filter-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
}

.tien-phong-plugin-wrapper .filter-group input,
.tien-phong-plugin-wrapper .filter-group select {
    padding: 8px 10px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.3s;
    font-family: inherit;
}

.tien-phong-plugin-wrapper .filter-group input:focus,
.tien-phong-plugin-wrapper .filter-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.tien-phong-plugin-wrapper .main-dashboard-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.tien-phong-plugin-wrapper .left-column,
.tien-phong-plugin-wrapper .right-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tien-phong-plugin-wrapper .dashboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tien-phong-plugin-wrapper .charts-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tien-phong-plugin-wrapper .card {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.tien-phong-plugin-wrapper .card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.tien-phong-plugin-wrapper .card h3 {
    font-size: 13px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tien-phong-plugin-wrapper .card .amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    word-break: break-word;
}

.tien-phong-plugin-wrapper .card.danger .amount {
    color: var(--danger);
}

.tien-phong-plugin-wrapper .card.success .amount {
    color: var(--success);
}

.tien-phong-plugin-wrapper .chart-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.tien-phong-plugin-wrapper .chart-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.tien-phong-plugin-wrapper .chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

.tien-phong-plugin-wrapper .expense-list-container {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tien-phong-plugin-wrapper .list-header {
    padding: 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tien-phong-plugin-wrapper .list-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

div#app-screen {
    max-height: 100vh;
    min-height: 100vh;
}

.tien-phong-plugin-wrapper #expense-list {
    overflow-y: auto;
    flex-grow: 1;
    max-height: 72vh;
    min-height: 72vh;
}

.tien-phong-plugin-wrapper .expense-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    grid-template-areas: "icon details thumbnails amount";
    gap: 0 16px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s;
    cursor: pointer;
    align-items: center;
}

.tien-phong-plugin-wrapper .expense-item:hover {
    background: var(--lighter);
}

.tien-phong-plugin-wrapper .expense-icon {
    grid-area: icon;
    font-size: 45px;
    width: 75px;
    height: 75px;
    background: var(--lighter);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    flex-direction: column;
    gap: 2px;
    padding: 8px 4px;
}

.tien-phong-plugin-wrapper .expense-icon .icon {
    font-size: 32px;
    line-height: 1;
}

.tien-phong-plugin-wrapper .expense-icon .category-name {
    font-size: 10px;
    font-weight: 600;
    color: var(--secondary);
    text-align: center;
    line-height: 1.2;
}

.tien-phong-plugin-wrapper .expense-details {
    grid-area: details;
}

.tien-phong-plugin-wrapper .expense-thumbnails {
    grid-area: thumbnails;
}

.tien-phong-plugin-wrapper .expense-amount {
    grid-area: amount;
    font-size: 16px;
    font-weight: 700;
    color: var(--danger);
    min-width: 90px;
    text-align: right;
}

.tien-phong-plugin-wrapper .expense-name {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0px;
    line-height: 1.4em;
}

.tien-phong-plugin-wrapper .expense-meta {
    font-size: 13px;
    color: var(--secondary);
}

.tien-phong-plugin-wrapper .split-avatars {
    display: flex;
    margin-top: 0px;
}

.tien-phong-plugin-wrapper .split-avatars img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    margin-left: -8px;
}

.tien-phong-plugin-wrapper .split-avatars img:first-child {
    margin-left: 0;
}

.tien-phong-plugin-wrapper .actions-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tien-phong-plugin-wrapper .action-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 24px;
}

.tien-phong-plugin-wrapper .action-card h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--secondary);
}

.tien-phong-plugin-wrapper .modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.tien-phong-plugin-wrapper .modal-content {
    background: white;
    margin: 5% auto;
    padding: 32px;
    max-width: 600px;
    border-radius: var(--radius-lg);
    position: relative;
    animation: slideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.tien-phong-plugin-wrapper .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.tien-phong-plugin-wrapper .modal-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
}

.tien-phong-plugin-wrapper .close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary);
    padding: 4px 8px;
    transition: all 0.2s;
}

.tien-phong-plugin-wrapper .close-btn:hover {
    color: var(--dark);
    transform: rotate(90deg);
}

.tien-phong-plugin-wrapper .form-section {
    margin-bottom: 5px;
}

.tien-phong-plugin-wrapper .form-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 14px;
}

.tien-phong-plugin-wrapper .form-section input,
.tien-phong-plugin-wrapper .form-section select,
.tien-phong-plugin-wrapper .form-section textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
}

.tien-phong-plugin-wrapper .form-section input:focus,
.tien-phong-plugin-wrapper .form-section select:focus,
.tien-phong-plugin-wrapper .form-section textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.tien-phong-plugin-wrapper .checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
}

.tien-phong-plugin-wrapper .checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tien-phong-plugin-wrapper .checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.tien-phong-plugin-wrapper .checkbox-item label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

.tien-phong-plugin-wrapper .image-upload-container {
    border: 2px dashed var(--border);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--lighter);
}

.tien-phong-plugin-wrapper .image-upload-container:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.tien-phong-plugin-wrapper .image-upload-container p {
    margin: 0;
    color: var(--secondary);
    font-size: 14px;
}

.tien-phong-plugin-wrapper .detail-section {
    margin-bottom: 20px;
}

.tien-phong-plugin-wrapper .detail-section h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tien-phong-plugin-wrapper .detail-section ul {
    list-style: none;
    padding: 0;
}

.tien-phong-plugin-wrapper .detail-section li {
    padding: 8px 0;
    color: var(--dark);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tien-phong-plugin-wrapper .detail-section li img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.tien-phong-plugin-wrapper .detail-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--danger);
    margin: 16px 0;
}

.tien-phong-plugin-wrapper .detail-meta {
    font-size: 14px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.tien-phong-plugin-wrapper .detail-image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
}

.tien-phong-plugin-wrapper .detail-image-gallery img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.tien-phong-plugin-wrapper .settle-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.tien-phong-plugin-wrapper .settle-table th {
    background: var(--lighter);
    padding: 12px;
    text-align: left;
    font-weight: 700;
    color: var(--secondary);
    border-bottom: 2px solid var(--border);
}

.tien-phong-plugin-wrapper .settle-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
}

.tien-phong-plugin-wrapper .balance-positive {
    color: var(--success);
    font-weight: 700;
}

.tien-phong-plugin-wrapper .balance-negative {
    color: var(--danger);
    font-weight: 700;
}

.tien-phong-plugin-wrapper .settlement-hint {
    background: var(--lighter);
    padding: 12px;
    border-left: 3px solid var(--primary);
    border-radius: 6px;
    margin: 8px 0;
    font-size: 13px;
    color: var(--dark);
}

.tien-phong-plugin-wrapper .stats-row {
    display: flex;
    gap: 12px;
    margin: 16px 0;
    font-size: 13px;
}

.tien-phong-plugin-wrapper .stat-item {
    background: var(--lighter);
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--secondary);
}

.tien-phong-plugin-wrapper .empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--secondary);
}

.tien-phong-plugin-wrapper .empty-state-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.tien-phong-plugin-wrapper .list-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tien-phong-plugin-wrapper .image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.tien-phong-plugin-wrapper .image-preview-item {
    position: relative;
    width: 100px;
    height: 100px;
}

.tien-phong-plugin-wrapper .image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.tien-phong-plugin-wrapper .image-preview-item .remove-image-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--danger);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.tien-phong-plugin-wrapper .image-preview-item .remove-image-btn:hover {
    transform: scale(1.1);
}

.tien-phong-plugin-wrapper .image-preview-item.uploading::after {
    content: '...';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 8px;
}

.tien-phong-plugin-wrapper .expense-thumbnails {
    display: flex;
    gap: 8px;
    padding-top: 8px;
}

.tien-phong-plugin-wrapper .expense-thumbnails img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform 0.2s;
}

.tien-phong-plugin-wrapper .expense-thumbnails img:hover {
    transform: scale(1.1);
    z-index: 10;
}

.tien-phong-plugin-wrapper .lightbox {
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.3s;
}

.tien-phong-plugin-wrapper .lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.tien-phong-plugin-wrapper .lightbox img {
    max-width: 45vh;
    max-height: 100%;
    object-fit: contain;
}

.tien-phong-plugin-wrapper .lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
	z-index: 99999999;
}

.tien-phong-plugin-wrapper .lightbox-close:hover {
    color: #bbb;
}

.tien-phong-plugin-wrapper .lightbox-prev,
.tien-phong-plugin-wrapper .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s;
    user-select: none;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 3px 3px 0;
}

.tien-phong-plugin-wrapper .lightbox-prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.tien-phong-plugin-wrapper .lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.tien-phong-plugin-wrapper .lightbox-prev:hover,
.tien-phong-plugin-wrapper .lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.tien-phong-plugin-wrapper #lightbox-caption {
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 50px;
}

/* =============================================== */
/* === CẤU TRÚC RESPONSIVE === */
/* =============================================== */

/* Mặc định trên DESKTOP */
.tien-phong-plugin-wrapper .mobile-main-content,
.tien-phong-plugin-wrapper .mobile-nav,
.tien-phong-plugin-wrapper #open-filter-modal-btn,
.tien-phong-plugin-wrapper .fab {
    display: none;
}

@media (max-width: 1200px) {
    .tien-phong-plugin-wrapper .main-dashboard-layout {
        grid-template-columns: 1fr;
    }
}

/* Giao diện trên MOBILE (<= 768px) */
@media (max-width: 768px) {
    .tien-phong-plugin-wrapper .container {
        padding: 12px;
    }

    .tien-phong-plugin-wrapper .main-dashboard-layout,
    .tien-phong-plugin-wrapper .desktop-filters,
    .tien-phong-plugin-wrapper #change-room-btn-desktop,
    .tien-phong-plugin-wrapper .fixed-actions {
        display: none;
    }

    .tien-phong-plugin-wrapper .app-header {
        padding: 12px;
        flex-wrap: nowrap;
        margin-bottom: 10px;
    }

    .tien-phong-plugin-wrapper .user-info {
        flex-grow: 1;
    }

    .tien-phong-plugin-wrapper .mobile-main-content,
    .tien-phong-plugin-wrapper .mobile-nav,
    .tien-phong-plugin-wrapper #open-filter-modal-btn,
    .tien-phong-plugin-wrapper .fab {
        display: block;
    }

    .tien-phong-plugin-wrapper .mobile-nav {
        display: flex;
    }

    .tien-phong-plugin-wrapper .fab {
        display: flex;
    }

    .tien-phong-plugin-wrapper #open-filter-modal-btn {
        display: inline-block;
    }

    .tien-phong-plugin-wrapper .mobile-main-content {
        padding-bottom: 80px;
    }

    .filter-display-bar {
        background: var(--lighter);
        border: 1px solid var(--border);
        padding: 10px 15px;
        font-size: 13px;
        font-weight: 500;
        color: var(--secondary);
        border-radius: var(--radius);
        margin-bottom: 10px;
        text-align: center;
    }

    .mobile-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 65px;
        background: white;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        justify-content: space-around;
        align-items: center;
        z-index: 1000;
        border-top: 1px solid var(--border);
    }

    .nav-button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        color: var(--secondary);
        font-family: inherit;
        font-size: 11px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        padding: 8px 12px;
        border-radius: 8px;
        gap: 4px;
        flex-grow: 1;
        height: 100%;
    }

    .nav-button .nav-icon {
        font-size: 20px;
    }

    .nav-button:hover {
        color: var(--primary);
    }

    .nav-button.active {
        color: var(--primary);
        background-color: var(--lighter);
    }

    .fab {
        position: fixed;
        bottom: 80px;
        right: 10px;
        width: 40px;
        height: 40px;
        background-color: var(--primary);
        color: white;
        border: none;
        border-radius: 50%;
        box-shadow: var(--shadow-lg);
        font-size: 33px;
        font-weight: 300;
        display: flex;
        justify-content: center;
        cursor: pointer;
        z-index: 1001;
        transition: transform 0.2s ease-out;
    }

    .fab:hover {
        background-color: var(--primary-dark);
        transform: scale(1);
    }

    .tab-panel {
        display: none;
        animation: fadeIn 0.3s ease-in-out;
    }

    .tab-panel.active {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .tien-phong-plugin-wrapper .dashboard.mobile-dashboard {
        grid-template-columns: 1fr 1fr;
    }

    .tien-phong-plugin-wrapper .charts-section.mobile-charts {
        grid-template-columns: 1fr;
    }

    .tien-phong-plugin-wrapper .card .amount {
        font-size: 24px;
    }

    .tien-phong-plugin-wrapper .expense-item {
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "icon details amount"
            "thumbnails thumbnails thumbnails";
        padding: 5px;
    }

    .modal-content {
        padding: 24px;
        margin: 20% auto;
    }

    .tien-phong-plugin-wrapper .modal-content {
        margin: 20px;
        padding: 20px;
        height: auto;
    }

    .tien-phong-plugin-wrapper .list-header {
        padding: 0px 0px 10px 0px;
    }

    .expense-thumbnails {
        display: none !important;
    }

    .tien-phong-plugin-wrapper .expense-name {
        font-size: 14px;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .tien-phong-plugin-wrapper .expense-amount {
        font-size: 13px;
    }

    .tien-phong-plugin-wrapper #expense-list {
        margin-top: -20px;
    }

    .tien-phong-plugin-wrapper .modal-header {
        margin-bottom: 10px;
        padding-bottom: 5px;
    }

    .tien-phong-plugin-wrapper .modal-header h2 {
        font-size: 14px;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .tien-phong-plugin-wrapper .detail-amount {
        font-size: 18px;
        margin: 10px 0px;
    }

    .tien-phong-plugin-wrapper .detail-meta {
        margin-bottom: 20px;
        font-size: 12px;
    }

    .tien-phong-plugin-wrapper .detail-section h4 {
        margin-bottom: 5px;
    }

    .tien-phong-plugin-wrapper .detail-section ul {
        display: flex;
        gap: 15px;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }

    .tien-phong-plugin-wrapper .detail-image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        margin: 15px 0px;
    }

    .filter-container.mobile-filters {
        display: grid;
        gap: 0px;
    }
}