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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

.navigation {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #7f8c8d;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #2c3e50;
    background: rgba(102, 126, 234, 0.1);
}

.nav-link.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.15);
    font-weight: 600;
}

.dashboard {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.dashboard-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-header h1 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 600;
}

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

.filters label {
    font-weight: 500;
    color: #555;
}

.filters select {
    padding: 10px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filters select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-header h3 {
    color: #7f8c8d;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.card-value {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.card-change {
    font-size: 14px;
    font-weight: 500;
    color: #27ae60;
}

.card-change.negative {
    color: #e74c3c;
}

.charts-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.chart-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 350px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chart-card h3 {
    flex-shrink: 0;
    margin-bottom: 15px;
}

.chart-card canvas {
    flex: 1;
    max-height: 280px !important;
    min-height: 200px !important;
    width: 100% !important;
    object-fit: contain;
}

.chart-card h3 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.data-table {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.data-table h3 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.table-container {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid #e1e8ed;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e1e8ed;
}

th {
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    color: #333;
    font-size: 14px;
}

tr:hover {
    background: #f8f9fa;
}

.amount-positive {
    color: #27ae60;
    font-weight: 600;
}

.amount-negative {
    color: #e74c3c;
    font-weight: 600;
}

/* PnL Report Styles */
.pnl-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.summary-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.summary-card.revenue {
    border-left: 4px solid #27ae60;
}

.summary-card.expenses {
    border-left: 4px solid #e74c3c;
}

.summary-card.profit {
    border-left: 4px solid #3498db;
}

.summary-card.margin {
    border-left: 4px solid #f39c12;
}

.summary-header h3 {
    color: #7f8c8d;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.summary-value {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.summary-change {
    font-size: 14px;
    font-weight: 500;
}

.summary-card.revenue .summary-change {
    color: #27ae60;
}

.summary-card.expenses .summary-change {
    color: #e74c3c;
}

.summary-card.profit .summary-change {
    color: #3498db;
}

.summary-card.margin .summary-change {
    color: #f39c12;
}

.pnl-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.pnl-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pnl-section h2 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.pnl-table-container {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid #e1e8ed;
}

.pnl-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.pnl-table th,
.pnl-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e1e8ed;
}

.pnl-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pnl-table td {
    color: #333;
    font-size: 14px;
}

.pnl-table tr:hover {
    background: #f8f9fa;
}

.pnl-table .highlight-row {
    background: rgba(102, 126, 234, 0.1);
    font-weight: 600;
}

.pnl-table .highlight-row td {
    border-top: 2px solid #667eea;
    border-bottom: 2px solid #667eea;
}

.pnl-table .variance-positive {
    color: #27ae60;
    font-weight: 600;
}

.pnl-table .variance-negative {
    color: #e74c3c;
    font-weight: 600;
}

.pnl-table .variance-neutral {
    color: #7f8c8d;
}

.pnl-metrics {
    margin-bottom: 30px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-card h3 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.kpi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.kpi-label {
    color: #7f8c8d;
    font-size: 14px;
    font-weight: 500;
}

.kpi-value {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
}

/* Home Page Styles */
.home-content {
    display: grid;
    gap: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-link {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.quick-stats {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.quick-stats h2 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.stat-label {
    color: #7f8c8d;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recent-activity {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.recent-activity h2 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

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

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.activity-item:hover {
    background: #e9ecef;
}

.activity-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
}

.activity-content {
    flex: 1;
}

.activity-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 4px;
}

.activity-time {
    color: #7f8c8d;
    font-size: 14px;
}

/* Embedded Page Styles */
.embedded-content {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
}

.report-launcher {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
}

.launcher-header {
    text-align: center;
    margin-bottom: 40px;
}

.launcher-header h2 {
    color: #2c3e50;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.launcher-header p {
    color: #7f8c8d;
    font-size: 18px;
}

.report-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.report-card.modern-card {
    border-radius: 20px;
    padding: 0;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Salaries Analysis Card - Green/Teal Theme */
.report-card.modern-card:nth-child(1) {
    background: linear-gradient(145deg, #e8f5e8 0%, #f0f8f0 100%);
    border-left: 4px solid #27ae60;
}

.report-card.modern-card:nth-child(1) .report-icon {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.15) 0%, rgba(46, 204, 113, 0.15) 100%);
}

.report-card.modern-card:nth-child(1) .feature-tag {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

/* Financial Analytics Card - Blue/Purple Theme */
.report-card.modern-card:nth-child(2) {
    background: linear-gradient(145deg, #e8f2ff 0%, #f0f6ff 100%);
    border-left: 4px solid #3498db;
}

.report-card.modern-card:nth-child(2) .report-icon {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.15) 0%, rgba(41, 128, 185, 0.15) 100%);
}

.report-card.modern-card:nth-child(2) .feature-tag {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

/* Performance Metrics Card - Orange/Red Theme */
.report-card.modern-card:nth-child(3) {
    background: linear-gradient(145deg, #fff5e8 0%, #fff8f0 100%);
    border-left: 4px solid #e67e22;
}

.report-card.modern-card:nth-child(3) .report-icon {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.15) 0%, rgba(211, 84, 0, 0.15) 100%);
}

.report-card.modern-card:nth-child(3) .feature-tag {
    background: rgba(230, 126, 34, 0.1);
    color: #e67e22;
    border: 1px solid rgba(230, 126, 34, 0.2);
}

.report-card.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.report-card.modern-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.report-card.modern-card:hover::before {
    opacity: 1;
}

/* Hover effects for each card theme */
.report-card.modern-card:nth-child(1):hover {
    box-shadow: 0 20px 60px rgba(39, 174, 96, 0.2);
    border-color: rgba(39, 174, 96, 0.3);
}

.report-card.modern-card:nth-child(2):hover {
    box-shadow: 0 20px 60px rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.3);
}

.report-card.modern-card:nth-child(3):hover {
    box-shadow: 0 20px 60px rgba(230, 126, 34, 0.2);
    border-color: rgba(230, 126, 34, 0.3);
}

.report-card.modern-card.coming-soon {
    opacity: 0.7;
    cursor: not-allowed;
}

.report-card.modern-card.coming-soon:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.report-card.modern-card.coming-soon::before {
    background: linear-gradient(90deg, #f39c12 0%, #e67e22 100%);
    opacity: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 25px 15px 25px;
    position: relative;
}

.report-icon {
    font-size: 40px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 15px;
    margin-bottom: 0;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.live {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    animation: pulse-glow 2s infinite;
}

.status-badge.coming-soon {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4);
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(39, 174, 96, 0);
    }
}

.card-content {
    padding: 0 25px 20px 25px;
}

.report-card h3 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.report-card p {
    color: #7f8c8d;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.card-footer {
    padding: 20px 25px 25px 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(248, 249, 250, 0.5);
}

.launch-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.launch-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.launch-button:hover::before {
    left: 100%;
}

.launch-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.launch-button.disabled {
    background: linear-gradient(135deg, #bdc3c7 0%, #95a5a6 100%);
    cursor: not-allowed;
}

.launch-button.disabled:hover {
    transform: none;
    box-shadow: none;
}

.arrow-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.report-card:hover .arrow-icon {
    transform: translateX(4px);
}

/* Fullscreen Report Page Styles */
.fullscreen-report {
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    height: 100vh;
    overflow: hidden;
}

.report-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e1e8ed;
    padding: 15px 25px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.report-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

.report-title h1 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.report-subtitle {
    color: #7f8c8d;
    font-size: 14px;
}

.report-controls {
    display: flex;
    gap: 10px;
}

.control-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
}

.control-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.control-btn.close {
    background: #e74c3c;
}

.control-btn.close:hover {
    background: #c0392b;
}

.report-container {
    height: calc(100vh - 80px);
    position: relative;
}

.powerbi-frame-container {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border: none;
    position: relative;
}

.powerbi-frame-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.powerbi-frame-container.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
}

/* Loading state */
.powerbi-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    color: #7f8c8d;
    font-size: 18px;
}

.powerbi-loading::before {
    content: "⏳";
    margin-right: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .report-launcher {
        padding: 20px;
    }
    
    .launcher-header h2 {
        font-size: 28px;
    }
    
    .report-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .report-card {
        padding: 25px;
    }
    
    .report-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .report-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .control-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .dashboard {
        padding: 15px;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .charts-container {
        grid-template-columns: 1fr;
    }
    
    .chart-card {
        height: 300px;
        padding: 20px;
    }
    
    .chart-card canvas {
        max-height: 220px !important;
        min-height: 150px !important;
    }
    
    .metrics-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .card {
        padding: 20px;
    }
    
    .card-value {
        font-size: 24px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .pnl-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pnl-summary {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .summary-card {
        padding: 20px;
    }
    
    .summary-value {
        font-size: 24px;
    }
    
    .kpi-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .metrics-cards {
        grid-template-columns: 1fr;
    }
    
    .filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filters select {
        width: 100%;
    }
}
