.dashboard-event-wrapper {
    padding-top: 0px;
    position: sticky;
    top: 70px;
    z-index: 1;
    background-color: #fff;
    font-family: var(--font-primary);
}

.dashboard-event-header {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    height: 57px;
    z-index: 100;
    margin-bottom: 20px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.dashboard-event-heading {
    width: 100%;
}

.dashboard-event-heading .dashboard-explore-event-heading {
    font-weight: 500;
    font-size: 20px;
    color: #000;
}

.tab-button1 {
    position: relative;
    height: 57px;
    width: 31%;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: transparent;
    color: #333;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-left: 36px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: var(--font-primary);
    flex-shrink: 0; /* Prevent shrinking when scrolling */
    min-width: 250px;
}

.tab-button1:focus {
    outline: none;
}

.tab-button1 .icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.tab-button1:hover {
    background: var(--msa-primary-color);
    color: #000;
}

.tab-button1.active {
    background: var(--msa-primary-color);
    color: #000;
    border-color: var(--msa-primary-color);
    font-weight: 500;
}

.dashboard-event-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pagination-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

@media (max-width: 1075px) {
    .dashboard-event-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pagination-container {
        justify-content: flex-start;
    }
}

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

