@media (max-width: 600px) {
    .about-section {
        padding: 5px 0 !important;
        min-height: unset;
    }

    .about-container {
        max-width: 100vw !important;
        padding: 0 5px !important;
    }
    .about-card {
        padding: 10vw 2vw !important;
        border-radius: 12px !important;
        gap: 10px !important;
    }
    .about-card h2 {
        font-size: 1.3rem !important;
        margin-top: 50px !important;
    }
    .about-avatar {
        width: 48px !important;
        height: 48px !important;
        margin-bottom: 8px;
    }
    .about-dev {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
    }
    .about-dev-info h3 {
        font-size: 1.05rem !important;
        text-align: center !important;
    }
    .about-dev-info p {
        font-size: 0.95rem !important;
        text-align: center !important;
    }
    .about-social {
        flex-direction: column !important;
        gap: 6px !important;
        align-items: center !important;
    }
}
/* About Section Styles */
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background: #ffffff;
    padding: 0 0 40px 0;
    margin-bottom: 40px;
}

.about-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card {
    background: #fff;
    border-radius: 18px;
    /*box-shadow: 0 4px 24px rgba(79,172,254,0.10), 0 1.5px 4px rgba(0,0,0,0.04);*/
    padding: 36px 32px 32px 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.about-card h2 {
    font-size: 2rem;
    color: #E1001B;
    margin-bottom: 5px;
    font-weight: 700;
    text-align: center;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 5px 0;
    width: 100%;
    color: #333;
    font-size: 1.05rem;
}
.about-list li {
    margin-bottom: 2px;
    padding-left: 0;
}

.about-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #4facfe 50%, transparent 100%);
    margin: 10px 0 5px 0;
}

.about-dev {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    margin-top: 10px;
}
.about-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(79,172,254,0.15);
    border: 3px solid #E1001B;
}
.about-dev-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.about-dev-info h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #222;
    font-weight: 700;
}
.about-dev-info p {
    margin: 0;
    color: #555;
    font-size: 1rem;
}
.about-social {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}
.about-social-link {
    color: #4facfe;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
}
.about-social-link:hover {
    color: #E1001B;
}

@media (max-width: 700px) {
    .about-card {
        padding: 20px 10px;
    }
    .about-container {
        padding: 0 5px;
    }
    .about-avatar {
        width: 55px;
        height: 55px;
    }
}
body.report-active .report-section {
    margin-bottom: 90px; /* Deja espacio para el footer principal */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -webkit-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: white;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
    margin: 0;
    padding: 0;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.sidebar.show {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    height: 76px; /* Altura fija */
    border-bottom: 1px solid #eee;
    background: #E1001B;
    color: white;  
}

.sidebar-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0 10px;
    line-height: 1;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    border-bottom: 1px solid #f5f5f5;
}

.sidebar-menu a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-menu a:hover {
    background: #f8f9fa;
    color: #E1001B;
}

.sidebar-menu .active a {
    background: #f0f0f0;
    color: #E1001B;
    font-weight: 500;
    border-left: 4px solid #E1001B;
}

/* Main Content */
.main-content {
    margin-top: 80px; /* Mismo valor que la altura del header */
    transition: margin-left 0.3s ease;
    min-height: calc(100vh - 80px);
    padding: 20px;
}

/* Search Container */
.search-container {
    max-width: 600px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.search-input {
    width: 100%;
    max-width: 500px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-input:focus {
    border-color: #4facfe;
    box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.2);
}

/* Search Button */
.search-btn {
    background: #4facfe;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-btn:hover {
    background: #3a9cfc;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.search-btn:active {
    transform: translateY(0);
}

/* Menu Button */
.menu-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    background: #E1001B;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    transition: all 0.3s ease;
    line-height: 1;
}

.menu-btn .icon {
    display: inline-block;
    width: 20px;
    text-align: center;
  
}

.menu-btn:hover {
    background: #c40017;
}

/* Main Content */
.main-content {
    transition: all 0.3s ease;
    position: relative;
    min-height: 100vh;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    
}

/* Content Wrapper */
.content-wrapper {
    flex: 1;
    padding: 10px 10px 10px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    margin-top: 0;  
}

/* Hide RENIEC section by default */
.reniec-section {
    display: none;
}

.main-content.shifted {
    margin-left: 300px;
}

/* RENIEC Section */
.reniec-section {
    display: none;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.reniec-section h2 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.search-btn {
    background: #E1001B;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    margin-left: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #c40017;
    transform: translateY(-1px);
}

.results-container {
    margin-top: 30px;
    background: transparent;
    border-radius: 10px;
    padding: 0;
}

/* Remove results container styles on mobile */
@media (max-width: 480px) {
    .results-container {
        margin: 0;
        padding: 0;
        background: none;
        border-radius: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        left: -100%;
        width: 100%;
    }
    
    .main-content.shifted {
        margin-left: 0;
        transform: translateX(100%);
    }
    
    .search-container {
        padding: 0 15px;
    }
   
    .menu-btn {
        top: 15px;
        left: 15px;
        font-size: 1.1rem;
        padding: 8px 12px;
    }
    
    .reniec-section {
        padding: 20px 15px;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 75px; /* Altura fija */
    background: #E1001B !important;
    color: rgb(255, 255, 255);
    padding: 15px 20px;
    text-align: center;
    z-index: 800;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header h1 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    margin-right: 10px;
    font-weight: 600;
    text-align: right;
}

.header p {
    font-size: 1.1rem;
    opacity: 0.9;
    text-align: right;
}

.search-section {
    padding: 10px;
    background: #ffffff;
    border-bottom: 0px solid #e9ecef;
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    font-size: 1.1rem;
    border: 2px solid #ddd;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.search-input:focus {
    border-color: #4facfe;
    box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.2rem;
}

.search-stats {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
}

.footer {
    background: #E1001B !important;
    color: rgb(255, 255, 255);
    padding: 0;
    text-align: center;
    margin: 0;
    width: 100%;
    line-height: 1;
    box-sizing: border-box;
    flex-shrink: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    line-height: 1.2;
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0;
    padding: 0 10px;
    transition: color 0.3s ease;
    display: inline-block;
    line-height: 1.2;
}

.footer-links a:hover {
    color: white;
}

.results-section {
    padding: 30px;
    min-height: 500px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.result-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-color: #4facfe;
}

.result-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 2px solid #4facfe;
    padding-bottom: 5px;
}

.result-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-row {
    display: flex;
    align-items: center;
    padding: 6px 0;
}

.info-label {
    font-weight: 600;
    color: #555;
    min-width: 120px;
    display: inline-block;
}

.maps-link {
    color: #1a73e8 !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.maps-link:hover {
    color: #0d47a1 !important;
    text-decoration: underline;
}

.info-value {
    color: #333;
    font-family: 'Roboto Mono', 'Courier New', monospace;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.95rem;
    flex: 1;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 10px;
    opacity: 1;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.no-results p {
    font-size: 1rem;
    line-height: 1.6;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4facfe;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.highlight {
    background-color: #fff3cd;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
   .content-wrapper {
        padding: 12px 0;  /* Remove horizontal padding */
        max-width: 100%;
        margin-top: 0;
        width: 100%;
    }
    
    /* Make RENIEC section full width on mobile */
    .reniec-section {
        padding: 15px 0;
        width: 100%;
        margin: 0;
    }
    
    .reniec-section .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Make search input full width */
    .search-container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Make results take full width */
    #reniecResults {
        width: 100%;
        margin: 15px 0 0 0;
        padding: 0;
    }
    
    /* Adjust result card for full width */
    .result-card {
        border-radius: 0;
        margin: 0;
        padding: 15px;
        box-shadow: none;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }
   
    .header h1 {
        font-size: 1.5rem;
        text-align: right;
        max-width: 75%;
        margin-left: auto;
        margin-right: 0;
    }

    .header p {
        font-size: 1rem;
        text-align: right;
    }

    .search-section,
    .results-section {
        padding: 20px 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .result-card {
        padding: 15px;
    }

    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        width: 100%;
        box-sizing: border-box;
    }

    .info-label {
        min-width: auto;
        font-size: 0.85rem;
        width: 100%;
        box-sizing: border-box;
    }

    .info-value {
        width: 100%;
        font-size: 0.9rem;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0;
    }
    
    /* Full width for RENIEC section on small devices */
    .reniec-section {
        padding: 10px 0;
    }
    
    .reniec-section .container {
        padding: 0 10px;
    }
    
    /* Adjust search container */
    .search-container {
        padding: 0 10px;
    }
    
    /* Full width results */
    #reniecResults {
        margin: 10px 0 0 0;
    }
    
    /* Adjust header */
.header {
    padding: 15px 15px 15px 50px;
    height: 60px;
}
    
    .menu-btn {
        left: 10px; /* Mantener a la izquierda */
        font-size: 1rem;
        padding: 6px 10px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 5px; /* Reducir el espacio entre icono y texto para pantallas pequeñas */
    }
    
    .menu-btn .icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 1em;
        width: 15px; /* Reducir el ancho para pantallas pequeñas */
    }
    
    .header h1 {
        font-size: 1rem; /* Reducir tamaño de fuente */
        text-align: right;
        padding-right: 5px;
        margin-bottom: 5px; /* Reducir margen inferior */
        margin-right: 0px;
    }
    
    .header p {
        font-size: 0.8rem; /* Reducir tamaño de fuente */
        text-align: right;
        padding-right: 10px;
    }

    .content-wrapper {
        padding: 10px 0 8px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        margin-top: 0;
        box-sizing: border-box;
    }

    .search-section {
        padding: 12px 0;
        width: 100%;
    }

    .search-container {
        max-width: 100%;
        width: 100%;
        padding: 0 5px;
        box-sizing: border-box;
    }

    .search-input {
        padding: 12px 40px 12px 15px;
        font-size: 1rem;
        width: 95%;
        box-sizing: border-box;
    }

    .search-icon {
        right: 15px;
    }

    .results-section {
        padding: 15px 5px;
        width: 100%;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
    }

    .result-card {
        padding: 12px;
        width: 100%;
        box-sizing: border-box;
    }

}

/* Footer Styles */

.footer {
    background: #E1001B !important;
    color: white;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    line-height: 1.2;
}


.footer-content {
    width: 100%;
    margin: 0;
    padding: 0 20px;
    color: rgb(255, 255, 255);
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}


.footer-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #fff !important;
}


.footer-description {
    font-size: 1rem;
    color: #fff !important;
    margin-bottom: 25px;
    line-height: 1.6;
}

.developer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}

.developer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.developer-details {
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.developer-details h3 {
    font-size: 1.3rem;
    margin: 0;
    color: #fff !important;
    text-align: center;
}

.developer-details p {
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
    color: white;
    line-height: 1.4;
    text-align: center;
    width: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bdc3c7;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    color: white;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #4facfe 50%, transparent 100%);
    margin: 5px 0 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #fff !important;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tech-stack {
    display: flex;
    align-items: center;
    gap: 10px;
}


.tech-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #fff !important;
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 20px 15px;
    }

    .footer-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .footer-description {
        text-align: center;
    }

    .developer-info {
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin-bottom: 10px;
    }

    .developer-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .developer-details h3 {
        text-align: center;
    }

    .developer-details p {
        text-align: center;
    }

    .social-links {
        gap: 15px;
        justify-content: center;
    }

    .social-link {
        padding: 6px 12px;
        font-size: 0.85rem;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .social-link span:first-child {
        margin-right: 5px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .tech-stack {
        justify-content: center;
        gap: 5px;
    }

    .tech-badge {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 15px 15px;
    }

    .social-links {
        flex-direction: column;
        gap: 10px;
    }

    .social-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Estilo para el saludo dinámico */
#greeting {
    color: #E1001B;
    font-weight: bold;
}

/* Report Section Styles */
.report-section {
    padding: 20px 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.report-actions {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.report-btn {
    background: #E1001B;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.report-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.report-btn:not(:disabled):hover {
    background: #c00017;
}

.report-container {
    background: rgb(255, 255, 255);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
    width: 100%;
}

.report-content {
    padding: 20px;
    overflow-x: auto;
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin: 15px 0;
}

.report-table th, 
.report-table td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 10px 12px;
}

.report-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.report-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.report-table tr:hover {
    background-color: #f1f1f1;
}

/* Loading state */
.loading {
    text-align: center;
    padding: 20px;
    font-style: italic;
    color: #666;
}

/* Responsive styles for report section */
@media (max-width: 768px) {
    .report-section {
        padding: 10px;
    }
    
    .report-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .report-btn {
        width: 100%;
        justify-content: center;
    }
    
    .report-table {
        font-size: 0.8rem;
    }
    
    .report-table th, 
    .report-table td {
        padding: 8px 6px;
    }
}

/* Print styles */
@media print {
    .report-actions {
        display: none !important;
    }
    
    .report-container {
        box-shadow: none !important;
        border: none !important;
        width: 100% !important;
    }
    
    .report-table {
        font-size: 10pt !important;
    }
    
    @page {
        size: A4 landscape;
        margin: 1cm;
    }
}
