/* Activities Styles */
.activities-page {
    width: 100%;
}

/* Hero Section */
.events-hero {
    background: linear-gradient(135deg, var(--primary-purple, #8B5CF6) 0%, #7c3aed 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-content h1 i {
    font-size: 2rem;
}

.hero-content > p {
    font-size: 1.25rem;
    margin: 0 0 2rem 0;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat i {
    font-size: 2rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.btn-create-event {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-purple, #8B5CF6);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-create-event:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Events Container */
.events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

/* Filters Sidebar */
.filters-sidebar {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.filter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.filter-section h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-section h3 i {
    color: var(--primary-purple, #8B5CF6);
}

.btn-clear-filters {
    background: none;
    border: none;
    color: var(--primary-purple, #8B5CF6);
    cursor: pointer;
    font-size: 0.875rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s ease;
}

.btn-clear-filters:hover {
    color: #7c3aed;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group h4 {
    font-size: 1rem;
    color: var(--gray-900);
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.filter-group h4 i {
    color: var(--primary-purple, #8B5CF6);
    font-size: 0.875rem;
}

.filter-group select,
.filter-group input[type="date"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    background: white;
    margin-bottom: 0.5rem;
}

.filter-group select:focus,
.filter-group input[type="date"]:focus {
    outline: none;
    border-color: var(--primary-purple, #8B5CF6);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.filter-option input[type="radio"] {
    cursor: pointer;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.filter-checkbox input[type="checkbox"] {
    cursor: pointer;
}

.date-separator {
    display: block;
    text-align: center;
    color: var(--gray-600);
    margin: 0.25rem 0;
    font-size: 0.875rem;
}

/* Events Main */
.events-main {
    min-width: 0;
}

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

.results-info h2 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin: 0;
    font-weight: 600;
}

.results-info h2 span {
    color: var(--gray-600);
    font-weight: 400;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sort-options select {
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    background: white;
    cursor: pointer;
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.view-btn {
    padding: 0.75rem 1rem;
    background: white;
    border: none;
    cursor: pointer;
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: #f3f4f6;
}

.view-btn.active {
    background: var(--primary-purple, #8B5CF6);
    color: white;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.events-grid.list-view {
    grid-template-columns: 1fr;
}

.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.event-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.event-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-status-badge.status-upcoming {
    background: #dbeafe;
    color: #1e40af;
}

.event-status-badge.status-ongoing {
    background: #fef3c7;
    color: #92400e;
}

.event-status-badge.status-completed {
    background: #d1fae5;
    color: #065f46;
}

.event-status-badge.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.event-card-content {
    padding: 1.5rem;
}

.event-card-content h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.event-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.meta-item i {
    color: var(--primary-purple, #8B5CF6);
    width: 16px;
}

.event-card-description {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.event-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.event-organizer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.event-organizer i {
    color: var(--primary-purple, #8B5CF6);
}

.event-arrow {
    color: var(--primary-purple, #8B5CF6);
    transition: transform 0.3s ease;
}

.event-card:hover .event-arrow {
    transform: translateX(4px);
}

/* List View */
.events-grid.list-view .event-card {
    display: flex;
    flex-direction: row;
}

.events-grid.list-view .event-card-image {
    width: 300px;
    height: 200px;
    flex-shrink: 0;
}

.events-grid.list-view .event-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.events-grid.list-view .event-card-meta {
    flex-direction: row;
    flex-wrap: wrap;
}

/* Load More */
.load-more-container {
    text-align: center;
    margin: 2rem 0;
}

.btn-load-more {
    padding: 1rem 2rem;
    background: var(--primary-purple, #8B5CF6);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-load-more:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results i {
    font-size: 4rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin: 0 0 0.5rem 0;
}

.no-results p {
    color: var(--gray-600);
    margin: 0 0 1.5rem 0;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-purple, #8B5CF6);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.activities-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0;
}

.activities-header h1 {
    font-size: 1.75rem;
    color: var(--primary-purple);
    margin: 0;
    font-weight: 600;
}

/* Filters */
.activities-filters {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
    border: 1px solid var(--pastel-purple-light);
    margin-bottom: 2rem;
}

.filter-form {
    width: 100%;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
}

.filter-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--pastel-purple);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.filter-input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px var(--pastel-purple-light);
}

.filter-actions {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
}

.filter-actions .btn {
    white-space: nowrap;
    padding: 0.75rem 1.5rem;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.activity-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
    border: 1px solid var(--pastel-purple-light);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.activity-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--pastel-purple-light);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.activity-card-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--gray-900);
    flex: 1;
}

.activity-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-upcoming {
    background: #dbeafe;
    color: #1e40af;
}

.status-ongoing {
    background: #fef3c7;
    color: #92400e;
}

.status-completed {
    background: #d1fae5;
    color: #065f46;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.activity-card-body {
    padding: 1.5rem;
}

.activity-info {
    margin-bottom: 1rem;
}

.activity-info p {
    margin: 0.5rem 0;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activity-info i {
    color: var(--primary-purple);
    width: 20px;
}

.activity-description {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.activity-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--pastel-purple-light);
    background: var(--gray-50);
}

/* Activity Detail Page */
.event-detail-container {
    width: 100%;
}

.back-nav {
    margin-bottom: 1rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-purple, #8B5CF6);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-back:hover {
    color: var(--primary-purple, #8B5CF6);
    opacity: 0.8;
}

/* Event Header */
.event-detail-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.event-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.event-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: capitalize;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-status-badge.status-upcoming {
    background: #dbeafe;
    color: #1e40af;
}

.event-status-badge.status-ongoing {
    background: #fef3c7;
    color: #92400e;
}

.event-status-badge.status-completed {
    background: #d1fae5;
    color: #065f46;
}

.event-status-badge.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.event-header-content h1 {
    font-size: 2rem;
    color: var(--gray-900);
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--primary-purple, #8B5CF6);
}

.meta-item strong {
    color: var(--gray-900);
}

.btn-icon {
    background: none;
    border: none;
    color: var(--primary-purple, #8B5CF6);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.btn-icon:hover {
    background: #f3f4f6;
}

.event-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-purple, #8B5CF6);
    color: white;
}

.btn-primary:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(139, 92, 246, 0.3);
}

.btn-primary.attending {
    background: #10b981;
}

.btn-secondary {
    background: #f3f4f6;
    color: var(--gray-900);
}

.btn-secondary:hover {
    background: #e5e7eb;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Event Details Grid */
.event-details-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
}

.event-details-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.detail-card h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.detail-card h3 i {
    color: var(--primary-purple, #8B5CF6);
}

.detail-content {
    color: var(--gray-700);
}

.datetime-info {
    margin-bottom: 1rem;
}

.datetime-item {
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

.datetime-item strong {
    color: var(--gray-900);
    min-width: 80px;
}

.address-text {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.location-meta {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

.location-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary-purple, #8B5CF6);
    cursor: pointer;
    padding: 0.5rem 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #7c3aed;
    text-decoration: underline;
}

.description-text {
    line-height: 1.8;
    color: var(--gray-700);
    white-space: pre-wrap;
}

.pet-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pet-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pet-info-item strong {
    color: var(--gray-900);
    font-size: 0.95rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
}

.tag-primary {
    background: #dbeafe;
    color: #1e40af;
}

.tag-secondary {
    background: #fef3c7;
    color: #92400e;
}

.tag-info {
    background: #e0e7ff;
    color: #3730a3;
}

/* Sidebar */
.event-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.sidebar-card h3 i {
    color: var(--primary-purple, #8B5CF6);
}

.attendees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.attendee-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    position: relative;
}

.attendee-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attendee-more {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-full-width {
    width: 100%;
    justify-content: center;
}

.quick-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quick-info-item i {
    color: var(--primary-purple, #8B5CF6);
    font-size: 1.25rem;
    width: 24px;
}

.quick-info-item > div {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quick-info-item strong {
    color: var(--gray-900);
    font-size: 0.95rem;
}

.quick-info-item span {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.activity-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--pastel-purple-light);
}

.activity-detail-header h1 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.activity-main-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
    border: 1px solid var(--pastel-purple-light);
}

.info-card h3 {
    font-size: 1rem;
    color: var(--primary-purple);
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card p {
    margin: 0;
    color: var(--gray-700);
    font-size: 1.1rem;
}

.activity-description-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
    border: 1px solid var(--pastel-purple-light);
    margin-bottom: 1.5rem;
}

.activity-description-card h3 {
    color: var(--primary-purple);
    margin: 0 0 1rem 0;
}

.activity-description-card p {
    color: var(--gray-700);
    line-height: 1.8;
    white-space: pre-wrap;
}

.apply-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
    border: 1px solid var(--pastel-purple-light);
    margin-bottom: 1.5rem;
}

.apply-section h3 {
    color: var(--primary-purple);
    margin: 0 0 1.5rem 0;
}

.application-status {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
    border: 1px solid var(--pastel-purple-light);
    margin-bottom: 1.5rem;
}

.applicants-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
    border: 1px solid var(--pastel-purple-light);
}

.applicants-section h3 {
    color: var(--primary-purple);
    margin: 0 0 1.5rem 0;
}

.applicants-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.applicant-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.applicant-item a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--gray-700);
    transition: color 0.3s ease;
}

.applicant-item a:hover {
    color: var(--primary-purple);
}

.applicant-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.pagination-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .events-container {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .events-hero {
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .events-container {
        padding: 0 1rem;
    }

    .events-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .events-grid.list-view .event-card {
        flex-direction: column;
    }

    .events-grid.list-view .event-card-image {
        width: 100%;
    }

    .activities-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .event-detail-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-image-container {
        height: 250px;
    }

    .event-details-grid {
        grid-template-columns: 1fr;
    }

    .event-actions {
        flex-direction: column;
    }

    .event-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .pet-info-grid {
        grid-template-columns: 1fr;
    }

    .attendees-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .activity-detail-header {
        flex-direction: column;
        gap: 1rem;
    }

    .activity-main-info {
        grid-template-columns: 1fr;
    }

    .filter-row {
        grid-template-columns: 1fr;
    }

    .filter-actions {
        flex-direction: column;
        width: 100%;
    }

    .filter-actions .btn {
        width: 100%;
    }

    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

