.em-button,
.wp-block-button__link {
    background: var(--em-primary) !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 9px 17px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: all 0.2s ease;
}

.em-button:hover,
.wp-block-button__link:hover {
    background: var(--em-primary-hover) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    text-decoration: none !important;
}

.em-connection-card,
.em-activity-toolbar,
.em-sync-status,
.em-event-filter,
.em-home-card {
    background: var(--em-white);
    border: 1px solid var(--em-border);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 1px 3px rgba(23, 33, 27, 0.05);
}

.em-sync-status {
    margin: 16px 0;
    font-size: 15px;
    line-height: 1.5;
}

.em-sync-progress {
    background: #f0fdf4;
}

.em-sync-complete {
    background: var(--em-soft-green);
    border-color: #bbf7d0;
}

.em-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    background: var(--em-white);
    border: 1px solid var(--em-border);
    border-radius: 16px;
    overflow: hidden;
}

.em-table thead {
    background: var(--em-table-head);
    border-bottom: 1px solid var(--em-border);
}

.em-table th,
.em-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--em-border);
    text-align: left;
    font-size: 14px;
}

.em-table th {
    color: var(--em-brand);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.em-table tr:last-child td {
    border-bottom: none;
}

.em-table tr:hover {
    background: #f8fafc;
}

.em-activity-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: 16px 0 20px;
}

.em-event-filter {
    margin-bottom: 24px;
}

.em-event-filter label {
    display: block;
    margin-bottom: 8px;
}

.em-event-filter select {
    width: 100%;
    max-width: 520px;
    padding: 10px 12px;
    border: 1px solid var(--em-border);
    border-radius: 10px;
    background: var(--em-white);
}

.em-strava-connect {
    margin-top: 12px;
}

.em-strava-connect img {
    height: 48px;
    width: auto;
    display: block;
    transition: all 0.2s ease;
}

.em-strava-connect img:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}