 .ms-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .ms-header {
            background: linear-gradient(135deg, #2c3e50, #4a6491);
            color: white;
            padding: 25px 0;
            border-radius: 10px;
            /* margin-bottom: 25px; */
               margin-bottom: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .ms-header-content {
            padding: 0 20px;
            text-align: center;
        }
        
        .ms-header-text h1 {
            font-size: 26px;
            /* margin-bottom: 5px; */
             margin: 80px;
            font-weight: 600;
        }
        
        .ms-table-container {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            margin-bottom: 25px;
        }
        
        .ms-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .ms-table thead {
            background-color: #4a6491;
            color: white;
        }
        
        .ms-table th {
            padding: 14px 12px;
            text-align: left;
            font-weight: 600;
            font-size: 15px;
        }
        
        .ms-table td {
            padding: 12px;
            border-bottom: 1px solid #eaeaea;
            font-size: 14px;
            vertical-align: top;
        }
        
        .ms-table tbody tr:hover {
            background-color: #f8f9fa;
        }
        
        .ms-date-cell {
            font-weight: 600;
            color: #2c3e50;
            white-space: nowrap;
        }
        
        .ms-title-cell {
            font-weight: 500;
        }
        
        .ms-organizers-cell {
            color: #4a6491;
        }
        
        .ms-target-cell {
            text-align: center;
        }
        
        .ms-partners-cell {
            font-size: 13px;
            color: #666;
        }
        
        .ms-filters {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .ms-filter-item {
            background-color: white;
            padding: 8px 16px;
            border-radius: 6px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
            font-size: 14px;
        }
        
        .ms-filter-item:hover {
            background-color: #4a6491;
            color: white;
            border-color: #4a6491;
        }
        
        .ms-filter-item.active {
            background-color: #2c3e50;
            color: white;
            border-color: #2c3e50;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .ms-table {
                display: block;
                overflow-x: auto;
            }
            
            .ms-filters {
                justify-content: flex-start;
            }
        }