* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #54289b;
    --secondary: #6c757d;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --violet: #8647ea;
    --light: #f8f9fa;
    --dark: #343a40;
    --white: #ffffff;
    --black: #000000;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --border: #dee2e6;

    --primary-dark: #400d74;
    --bg-body: #F2F4F7;
    --bg-card: #FFFFFF;
    --text-main: #1C1C1E;
    --text-sub: #8E8E93;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.17);
    --radius: 12px;
}

body {
    background-color: #f5f5f5;
    color: var(--dark);
    overflow-x: hidden;
}
a {
    text-decoration: none;
    cursor: pointer;
}

a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    cursor: pointer;
}

.app-container {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    position: relative;
}

/* Header Styles */
.header {
    background: linear-gradient(130deg, #54289b, #0f0316, #54289b);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Search Bar */
.search-bar {
    background: #ffffff36;
    border-radius: 25px;
    padding: 10px 20px;
    margin: 15px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    cursor: pointer;
    transition: transform 0.2s;
}

.menu-item:hover {
    transform: translateY(-3px);
}

.menu-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.menu-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--dark);
    text-align: center;
}

/* Sections */
.section {
    padding: 20px;
}

.section-list {
    padding-top: 10px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.see-all {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

/* Promo Cards */
.promo-cards {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.promo-card {
    min-width: 200px;
    height: 120px;
    border-radius: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.promo-discount {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 20px;
}

.promo-description {
    font-size: 12px;
    opacity: 0.9;
}

.promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.2);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 10px;
}

/* Package Cards */

.package-mitra-cards {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 1fr;
}

.package-mitra-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    height: 100%;
}

.package-mitra-image {
    width: 100px;
    background: linear-gradient(130deg, #54289b, #0f0316, #54289b);
    display: flex;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex: 1;
}

.package-mitra-info {
    padding: 10px;
    flex: 1;
}


.package-cards {
    display: grid;
    gap: 15px;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    height: 100%;
}

.package-card-detail {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
    padding: 10px;
}
.package-image {
    width: 100px;
    background: linear-gradient(130deg, #54289b, #0f0316, #54289b);
    display: flex;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex: 0.7;
}


.package-image-detail {
    width: 100px;
    background: linear-gradient(130deg, #54289b, #0f0316, #54289b);
    display: flex;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex: 1;
}

.package-info {
    padding: 10px;
    flex: 1;
}

.package-info-two {
    padding: 10px;
    flex: 0.7;
}

.package-star {
    font-size: 10px;
    font-weight: 500;
    margin-bottom: 1px;
}

.package-title {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

.package-price {
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
}

.package-deposite {
    color: var(--success);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 2px;
}

.package-details {
    color: var(--black);
    font-size: 10px;
    margin-top: 10px;
}

.package-detail-bangets {
    color: #8a8383;
    font-size: 10px;
    margin-bottom: 5px;
}

.package-details-two {
    color: var(--gray);
    font-size: 10px;
}

.reading-section {
    background: linear-gradient(130deg, #54289b, #0f0316, #54289b);
    color: white;
    padding: 20px;
    margin-bottom: 80px;
}

.reading-section-paket {
    padding: 20px;
}

.reading-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reading-title {
    font-size: 18px;
    font-weight: 600;
}

.book-preview {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.book-card {
    min-width: 120px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    padding-bottom: 10px;
    text-align: center;
}

.book-card-external {
    min-width: 200px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 5px;
    text-align: center;
}

.book-icon {
    font-size: 50px;
}

.book-title {
    font-size: 12px;
    font-weight: 500;
}

.cover-paket {
    width: 100%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.cover-book {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.cover-banner-paket {
    width: 100%;
    border-radius: 10px;
}


.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
    padding: 15px 0;
    border-top: 1px solid var(--border);
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 500px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--gray);
    font-size: 12px;
    cursor: pointer;
}

.nav-item.active {
    color: var(--primary);
}

.nav-icon {
    font-size: 20px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.home-banner {
    height: 150px;
    background: url('https://sutra-travel.com/web/assets2026/image/banner-data/banner.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: normal;
    color: white;
    margin: 10px;
    border-radius: 15px;
    text-align: center;
    padding: 20px;
}


.about-banner {
    height: 250px;
    background: url('https://sutra-travel.com/web/assets2026/image/banner-data/CABANG-AGEN.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: normal;
    color: white;
    margin: 10px;
    border-radius: 15px;
    text-align: center;
    padding: 20px;
}


.keunggulan-banner {
    height: 250px;
    background: url('https://sutra-travel.com/web/assets2026/image/banner-data/KEUNGGULAN.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: normal;
    color: white;
    text-align: center;
}

.brand-banner {
    height: 210px;
    background: url('https://sutra-travel.com/web/assets2026/image/banner-data/BRANDS-SUTRA.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: normal;
    color: white;
    margin: 10px;
    border-radius: 15px;
    text-align: center;
    padding: 20px;
}

.ai-button {
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
    color: #4e4e4e;
    text-decoration: none;
    display: inline-block;
}

.mb-80 {
    margin-bottom: 80px;
}

.button-10 {
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 6px 14px;
   font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
   border-radius: 6px;
   border: none;

   color: #fff;
   background: linear-gradient(180deg, var(--primary) 0%, var(--primary)  100%);
   background-origin: border-box;
   box-shadow: 0px 0.5px 1.5px rgba(54, 122, 246, 0.25), inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2);
   user-select: none;
   -webkit-user-select: none;
   touch-action: manipulation;
}

.button-20 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    border-radius: 6px;
    border: none;

    color: #fff;
    background: linear-gradient(180deg, var(--violet) 0%, var(--violet) 100%);
    background-origin: border-box;
    box-shadow: 0px 0.5px 1.5px rgba(54, 122, 246, 0.25), inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-10:focus {
    box-shadow: inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2), 0px 0.5px 1.5px rgba(54, 122, 246, 0.25), 0px 0px 0px 3.5px rgba(58, 108, 217, 0.5);
    outline: 0;
}

.member-profile {
    background: linear-gradient(130deg, #54289b, #0f0316, #54289b);
    border-radius: 12px;
    padding: 10px;
    margin: 10px 20px 20px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    color: white;
}

.profile-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    font-size: 32px;
    color: #007bff;
}

/* CSS Member*/
.points-card {
    background: linear-gradient(130deg, #54289b, #0f0316, #54289b);
    border-radius: 12px;
    padding: 10px;
    margin: 10px 10px 10px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    color: white;
}

.points-info h3 {
    font-size: 12px;
    margin-bottom: 4px;
}

.points-value {
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.points-value span {
    font-size: 12px;
    color: goldenrod;
    font-weight: 400;
}

.points-action {
    background: linear-gradient(135deg, #7a24e8 0%, #0056b3 100%);
    color: white;
    padding: 10px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s ease;
}

.points-action:hover {
    transform: scale(1.05);
}

/* Member Benefits Section */
.benefits-section {
    padding: 0 20px 20px 20px;
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title a {
    font-size: 13px;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.benefit-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
}

.benefit-card:hover {
    background: #e3f2fd;
    border-color: #007bff;
    transform: translateY(-2px);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.benefit-icon.blue { background: #e3f2fd; color: #007bff; }
.benefit-icon.green { background: #e8f5e9; color: #43a047; }
.benefit-icon.orange { background: #fff3e0; color: #fb8c00; }
.benefit-icon.purple { background: #f3e5f5; color: #8e24aa; }
.benefit-icon.red { background: #ffebee; color: #e53935; }
.benefit-icon.teal { background: #e0f2f1; color: #00897b; }

.benefit-text h4 {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.benefit-text p {
    font-size: 11px;
    color: #666;
}

/* Member Menu List */
.member-menu {
    padding: 0 20px 24px 20px;
}

.menu-list {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.menu-item-member {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #f2f3f7;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
    color: #333;
}

.menu-item-member:last-child {
    border-bottom: none;
}

.menu-item-member:hover {
    background: #f8f9fa;
}

.menu-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-icon-member {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.menu-icon-member.blue { background: #e3f2fd; color: #007bff; }
.menu-icon-member.green { background: #e8f5e9; color: #43a047; }
.menu-icon-member.orange { background: #fff3e0; color: #fb8c00; }
.menu-icon-member.purple { background: #f3e5f5; color: #8e24aa; }
.menu-icon-member.gray { background: #f2f3f7; color: #666; }

.menu-text {
    display: flex;
    flex-direction: column;
}

.menu-text span {
    font-size: 14px;
    font-weight: 600;
}

.menu-text small {
    font-size: 11px;
    color: #999;
}

.menu-arrow {
    color: #ccc;
    font-size: 14px;
}

/* Badge */
.badge {
    background: #ff4757;
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

/* Progress Bar */
.progress-section {
    padding: 0 20px 20px 20px;
}

.progress-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px;
    color: white;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-header h4 {
    font-size: 14px;
    font-weight: 600;
}

.progress-header span {
    font-size: 12px;
    opacity: 0.9;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    background: white;
    height: 100%;
    border-radius: 10px;
    width: 65%;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 11px;
    opacity: 0.9;
}


/* CSS Marketing*/
.member-info {
    flex: 1;
}

.member-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.member-role {
    font-size: 12px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.member-role i {
    color: #ffd700;
}

.member-stats {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.stats-section {
    padding: 20px;
    margin-top: -20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.stat-icon.blue { background: #e3f2fd; color: #007bff; }
.stat-icon.green { background: #e8f5e9; color: #43a047; }
.stat-icon.orange { background: #fff3e0; color: #fb8c00; }
.stat-icon.purple { background: #f3e5f5; color: #8e24aa; }

.stat-info h4 {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
    margin-top: 0px;
}

.stat-info .value {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.stat-info .change {
    font-size: 11px;
    color: #43a047;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-info .change.negative {
    color: #e53935;
}

/* Chart Section */
.chart-section {
    padding: 0 20px 20px 20px;
    margin-bottom: 100px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

.chart-filter {
    display: flex;
    gap: 8px;
}

.filter-btn {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #e0e0e0;
    background: white;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.chart-container {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 220px;
}

/* Sales History Section */
.history-section {
    padding: 0 20px 24px 20px;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.history-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.view-all {
    font-size: 13px;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.history-list {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.history-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #f2f3f7;
    cursor: pointer;
    transition: background 0.2s ease;
}

.history-item:last-child {
    border-bottom: none;
}

.history-item:hover {
    background: #f8f9fa;
}

.history-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-right: 12px;
}

.history-icon.flight { background: #e3f2fd; color: #007bff; }
.history-icon.hotel { background: #ffebee; color: #e53935; }
.history-icon.train { background: #f3e5f5; color: #8e24aa; }
.history-icon.car { background: #e8f5e9; color: #43a047; }

.history-info {
    flex: 1;
}

.history-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.history-info p {
    font-size: 12px;
    color: #999;
}

.history-amount {
    text-align: right;
}

.history-amount .price {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.history-amount .commission {
    font-size: 11px;
    color: #43a047;
    background: #e8f5e9;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 4px;
}

.history-status {
    margin-left: 12px;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.status-badge.success {
    background: #e8f5e9;
    color: #43a047;
}

.status-badge.pending {
    background: #fff3e0;
    color: #fb8c00;
}

.status-badge.cancelled {
    background: #ffebee;
    color: #e53935;
}

/* Quick Actions */
.quick-actions {
    padding: 0 20px 20px 20px;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

.action-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.action-icon.blue { background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); color: white; }
.action-icon.green { background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%); color: white; }
.action-icon.orange { background: linear-gradient(135deg, #fb8c00 0%, #f57c00 100%); color: white; }
.action-icon.purple { background: linear-gradient(135deg, #8e24aa 0%, #6a1b9a 100%); color: white; }

.action-label {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

/* Performance Card */
.perf-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px;
    color: white;
}

.perf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.perf-header h4 {
    font-size: 14px;
    font-weight: 600;
}

.perf-header i {
    opacity: 0.8;
}

.perf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.perf-item {
    text-align: center;
}

.perf-item .value {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.perf-item .label {
    font-size: 11px;
    opacity: 0.9;
}

@media (max-width: 300px) {
    .app-container {
        width: 100%;
        border-radius: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

