:root {
    --primary-color: #e5b84a;
    --purple-accent: #8b5cf6;
    --dark-bg: #0a0e27;
    --dark-bg-gradient: linear-gradient(135deg, #0a0e27 0%, #1a1b3d 50%, #2d1b3d 100%);
    --dark-card: #1e2142;
    --dark-card-hover: #25284a;
    --dark-border: #2d3159;
    --dark-border-light: #3d4169;
    --text-light: #ffffffcc;
    --text-muted: #a0a0c0;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg-gradient);
    background-attachment: fixed;
    color: #fff;
    padding-top: 70px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, #1e2142 0%, #25284a 100%) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-border);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--text-light) !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    background: var(--dark-bg-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(229, 184, 74, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    margin: 0;
}

.hero-graphic {
    position: relative;
    height: 400px;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(229, 184, 74, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 50%;
    right: 20%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

/* Platform Cards */
.platform-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    border-color: var(--purple-accent);
    background: var(--dark-card-hover);
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.platform-icon {
    width: 60px;
    height: 60px;
    background: rgba(229, 184, 74, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.platform-header h3 {
    flex: 1;
    margin: 0;
    font-size: 1.5rem;
}

.platform-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background: rgba(229, 184, 74, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(229, 184, 74, 0.3);
}

.platform-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--dark-border);
}

.stat-mini {
    text-align: center;
}

.stat-mini strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-mini small {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Agent Cards */
.agents {
    background: var(--dark-bg-gradient);
}

.agent-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    border-color: var(--purple-accent);
    background: var(--dark-card-hover);
}

.agent-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.agent-icon {
    width: 50px;
    height: 50px;
    background: rgba(229, 184, 74, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.agent-name {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.agent-industry {
    display: inline-block;
    background: rgba(229, 184, 74, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.agent-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--dark-border);
}

.agent-detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.agent-detail-item span:first-child {
    color: var(--text-light);
}

.agent-detail-item span:last-child {
    color: var(--primary-color);
    font-weight: 600;
}

/* Statistics Cards */
.stat-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    border-color: var(--purple-accent);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #fff;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-light);
    margin: 0;
}

/* Chart Cards */
.chart-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
}

.chart-card h4 {
    color: var(--primary-color);
}

/* Table */
.table-dark {
    background: var(--dark-card);
    border-radius: 10px;
    overflow: hidden;
}

.table-dark thead {
    background: rgba(229, 184, 74, 0.1);
}

.table-dark th {
    color: var(--primary-color);
    border-color: var(--dark-border);
    font-weight: 600;
}

.table-dark td {
    border-color: var(--dark-border);
    color: var(--text-light);
}

.table-dark tbody tr:hover {
    background: rgba(229, 184, 74, 0.05);
}

.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
}

/* Forms */
.form-control,
.form-select {
    background-color: var(--dark-card);
    color: #fff;
    border: 1px solid var(--dark-border);
}

.form-control:focus,
.form-select:focus {
    background-color: #1c1c1c;
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(229, 184, 74, 0.25);
}

.form-control::placeholder {
    color: #aaa;
}

.form-control:focus,
.form-select:focus {
    background-color: var(--dark-card);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(229, 184, 74, 0.25);
}

.form-control::placeholder {
    color: var(--text-light);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #d2a43b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 184, 74, 0.3);
}

/* Contact Section */
.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--dark-border);
}

/* Footer */
.footer {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
}

/* Statistics Section */
.statistics {
    background: var(--dark-bg-gradient);
}

/* Call Records Section */
.call-records {
    background: var(--dark-bg-gradient);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .platform-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Scroll Animation */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

/* Integrations Section */
.integrations {
    background: var(--dark-bg-gradient);
}

.integration-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.integration-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.integration-icon {
    width: 60px;
    height: 60px;
    background: rgba(229, 184, 74, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.integration-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.integration-list {
    list-style: none;
    padding: 0;
}

.integration-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

/* Screenshot Cards */
.screenshot-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    border-color: var(--purple-accent);
    background: var(--dark-card-hover);
}

.screenshot-header {
    padding: 1rem 1.5rem;
    background: rgba(229, 184, 74, 0.05);
    border-bottom: 1px solid var(--dark-border);
}

.screenshot-header h5 {
    margin: 0;
    color: var(--primary-color);
}

.screenshot-placeholder {
    padding: 3rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-light);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-placeholder i {
    color: var(--primary-color);
    opacity: 0.5;
}

.screenshot-image-container {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    min-height: 200px;
    max-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--dark-border);
    perspective: 1000px;
    padding: 1rem;
}

.screenshot-image {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    display: block;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.screenshot-card:hover .screenshot-image {
    transform: perspective(1000px) rotateY(-3deg) rotateX(1deg) scale(1.02);
}

.screenshot-info {
    padding: 1.5rem;
}

.screenshot-info p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Reports Section */
.reports {
    background: var(--dark-bg-gradient);
}

.sidebar-reports {
    background: var(--dark-card);
    border-right: 1px solid var(--dark-border);
    min-height: calc(100vh - 70px);
    padding: 0;
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.sidebar-content {
    padding: 2rem;
}

.sidebar-content h4 {
    color: var(--primary-color);
}

.sidebar-content .nav-link {
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.sidebar-content .nav-link:hover {
    background: rgba(229, 184, 74, 0.1);
    color: var(--primary-color);
}

.sidebar-content .nav-link.active {
    background: rgba(229, 184, 74, 0.2);
    color: var(--primary-color);
    font-weight: 600;
}

.reports-content {
    padding: 2rem;
}

.report-section {
    display: none;
}

.report-section.active {
    display: block;
}

.metric-card {
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    color: #fff;
}

.metric-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.metric-card small {
    display: block;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.metric-change {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Recording Cards */
.recording-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s;
}

.recording-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.recording-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.recording-info {
    flex: 1;
}

.recording-info h6 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.recording-info small {
    color: var(--text-light);
    display: block;
}

.recording-actions {
    display: flex;
    gap: 0.5rem;
}

/* Export Cards */
.export-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
}

.export-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.export-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Modal Styles */
.modal-content {
    background-color: var(--dark-card) !important;
    border: 1px solid var(--dark-border);
    color: #fff;
}

.modal-header {
    border-bottom-color: var(--dark-border) !important;
}

.modal-footer {
    border-top-color: var(--dark-border) !important;
}

.modal-content .form-control,
.modal-content .form-select {
    background-color: var(--dark-card);
    color: #fff;
    border: 1px solid var(--dark-border);
}

.modal-content .form-control:focus,
.modal-content .form-select:focus {
    background-color: var(--dark-card);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(229, 184, 74, 0.25);
}

.modal-content .alert-info {
    background-color: rgba(139, 92, 246, 0.1);
    border-color: var(--purple-accent);
    color: var(--text-light);
}

.loading-spinner {
    display: none;
    width: 30px;
    height: 30px;
    border: 4px solid var(--primary-color);
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Agent Call Button */
.agent-call-btn {
    margin-top: 1rem;
    width: 100%;
}

/* Scrapers Section */
.scrapers {
    background: var(--dark-bg-gradient);
}

.scraper-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.scraper-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    border-color: var(--purple-accent);
}

.scraper-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--dark-border);
}

.scraper-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.scraper-header h3 {
    flex: 1;
    margin: 0;
    font-size: 1.5rem;
}

.scraper-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.scraper-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scraper-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.scraper-stats {
    padding: 1rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.stat-box {
    text-align: center;
}

.stat-box h4 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.stat-box small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.code-example {
    background: #0a0e27;
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    padding: 1rem;
    overflow-x: auto;
    position: relative;
    max-height: 300px;
    overflow-y: auto;
}

.code-example pre {
    color: #a0a0c0;
    font-size: 0.85rem;
    margin: 0;
    font-family: 'Courier New', monospace;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.code-example-clickable {
    cursor: pointer;
    transition: border-color 0.3s;
}

.code-example-clickable:hover {
    border-color: var(--primary-color);
}

.code-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* Workflows n8n */
.scraper-automation {
    margin-top: 1.5rem;
}

.workflows-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.workflow-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.workflow-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
    border-color: var(--purple-accent);
}

.workflow-image-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--dark-border);
    margin-bottom: 1rem;
    background: #0a0e27;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    display: block;
}

.workflow-title {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.workflow-description {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .workflows-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal para respuestas */
.code-example-modal {
    background: #0a0e27;
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    padding: 1.5rem;
    max-height: 70vh;
    overflow-y: auto;
}

.code-example-modal pre {
    color: #a0a0c0;
    font-size: 0.9rem;
    margin: 0;
    font-family: 'Courier New', monospace;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.use-cases-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 2rem;
}

.use-case-item {
    text-align: center;
    padding: 1.5rem;
}

.use-case-icon {
    width: 70px;
    height: 70px;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid var(--purple-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--purple-accent);
    margin: 0 auto 1rem;
}

.use-case-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.use-case-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Custom Alerts (igual que Hilton) */
.custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    min-width: 300px;
    max-width: 500px;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s, transform 0.3s;
}

.custom-alert.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-left: 4px solid #34d399;
}

.custom-alert.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-left: 4px solid #f87171;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.alert-content i {
    font-size: 1.5rem;
}

.alert-content span {
    flex: 1;
    font-weight: 500;
}

/* Responsive Updates */
@media (max-width: 992px) {
    .sidebar-reports {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid var(--dark-border);
    }

    .sidebar-content {
        position: relative;
        top: 0;
    }

    .reports-content {
        padding: 1rem;
    }

    .custom-alert {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
}

