body {
    font-family: 'Inter', sans-serif;
}
.container {
    max-width: 1200px;
}

/* Common Card Styles for Consistency */
.media-card,
.patent-card,
.pub-card,
.training-card,
.article-card,
.advisory-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.media-card:hover,
.patent-card:hover,
.pub-card:hover,
.training-card:hover,
.article-card:hover,
.advisory-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px -5px rgba(59, 130, 246, 0.2); /* Blue shadow */
}

/* Specific Card Borders */
.media-card {
    border-left: 4px solid #3b82f6; /* Blue 500 */
}

.patent-card {
    border-left: 4px solid #3b82f6; /* Blue 500 */
}

.pub-card {
    border-left: 4px solid #3b82f6; /* Blue 500 */
}

/* Trainings Page Filters */
.filter-toggle {
    display: none; /* Hidden on desktop */
}
@media (max-width: 768px) {
    .filter-toggle {
        display: flex;
    }
    .filter-sidebar {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }
    .filter-sidebar.active {
        max-height: 1000px; /* Large enough value to show content */
    }
}

.training-card {
    border-left: 4px solid transparent;
}
.paid { border-left-color: #3b82f6; } /* Blue */
.conference { border-left-color: #3b82f6; } /* Blue */

/* Index Page */
.tech-bg {
    background-image: radial-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}
.btn-primary {
    transition: all 0.2s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.5);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-marquee {
    animation: marquee 30s linear infinite;
    width: max-content;
}
.mask-linear-fade:hover .animate-marquee { animation-play-state: paused; }
.mask-linear-fade {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* Agenda Pages */
.day-card {
    border-top: 4px solid;
    transition: transform 0.2s, box-shadow 0.2s;
}
.day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}
.day-1 { border-color: #3b82f6; } /* Blue */
.day-2 { border-color: #f59e0b; } /* Amber */
.day-3 { border-color: #3b82f6; } /* Blue */

/* Advisories Page */
.advisory-table th, .advisory-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb; /* Gray 200 for Light Mode */
}
.dark .advisory-table th, .dark .advisory-table td {
    border-bottom-color: #374151; /* Gray 700 for Dark Mode */
}
.advisory-table th {
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #9ca3af; /* Gray 400 */
}
.advisory-table tbody tr:hover {
    background-color: #f3f4f6; /* Gray 100 for Light Mode */
}
.dark .advisory-table tbody tr:hover {
    background-color: #374151; /* Gray 700 for Dark Mode */
}
.advisory-card {
    border-left: 4px solid #ef4444; /* Red 500 */
}

.article-card {
    border-bottom: 4px solid transparent;
}
.article-card:hover {
    border-bottom-color: #3b82f6; /* Blue 500 */
}

/* Contact Page */
.input-field {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.input-field:focus {
    outline: none;
    border-color: #3b82f6; /* Blue 500 */
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}