/* Events Page Specific Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f8f9fa;
}

.events-main {
    min-height: calc(100vh - 200px);
    padding: 3rem 1rem;
}

.events-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #666666;
    font-size: 1rem;
}

/* Sponsored Jobs */
.sponsored-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(44, 56, 77, 0.08);
    margin-bottom: 2.5rem;
    border: 1px solid #eef1f5;
}

.sponsored-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}

.sponsored-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.sponsored-header p {
    color: #5b6b82;
    margin: 0;
}

.sponsored-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.sponsored-card {
    border: 1px solid #e9eef5;
    border-radius: 14px;
    padding: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sponsored-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(44, 56, 77, 0.12);
}

.sponsored-inline-card {
    border: 1px solid #e3e8f3;
    border-radius: 16px;
    background: #fffdf7;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    margin: 1rem 0;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.sponsored-inline-card:hover {
    box-shadow: 0 8px 20px rgba(44, 56, 77, 0.12);
    transform: translateY(-2px);
}

.sponsored-inline-label {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #b7791f;
    background: #fef3c7;
    padding: 0.15rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.sponsored-inline-company {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c384d;
    margin-bottom: 0.35rem;
}

.sponsored-inline-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.sponsored-inline-meta span {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: #edf2f7;
    color: #2c384d;
}

.sponsored-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 0.3rem 0.75rem;
    background: #f6e05e;
    color: #744210;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sponsored-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
}

.sponsored-company {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-weight: 500;
}

.sponsored-company img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e2e8f0;
}

.sponsored-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sponsored-meta span {
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: #e9f0ff;
    color: #1a365d;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.sponsored-description {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Filters Section */
.filters-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.filters-row {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 0;
}

.search-box svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999999;
    pointer-events: none;
}

.search-box input {
    width: 100%;
    padding: 0.9rem 1.2rem 0.9rem 3rem;
    border: 2px solid #e8e8e8;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #1a1a1a;
    font-family: inherit;
}

.search-box input:focus {
    outline: none;
    border-color: #2c384d;
    box-shadow: 0 0 0 3px rgba(44, 56, 77, 0.1);
}

.search-box input::placeholder {
    color: #999999;
}

.filters-row .custom-select {
    width: 200px;
    flex-shrink: 0;
}

/* Custom Select Dropdown */
.custom-select {
    position: relative;
    width: 100%;
}

.select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-trigger:hover {
    border-color: #2c384d;
}

.select-trigger.active {
    border-color: #2c384d;
    box-shadow: 0 0 0 3px rgba(44, 56, 77, 0.1);
}

.select-value {
    color: #1a1a1a;
    font-size: 1rem;
}

.select-value.placeholder {
    color: #999999;
}

.select-arrow {
    transition: transform 0.3s ease;
}

.select-trigger.active .select-arrow {
    transform: rotate(180deg);
}

.select-options {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.select-options.active {
    display: block;
}

.select-options li {
    padding: 0.75rem 1.2rem;
    cursor: pointer;
    transition: background 0.2s ease;
    color: #1a1a1a;
}

.select-options li:hover {
    background: #f0f4f8;
}

.select-options li.selected {
    background: #e8f0f8;
    color: #2c384d;
    font-weight: 500;
}

/* Loading and Empty States */
.loading-state,
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e8e8e8;
    border-top-color: #2c384d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner.small {
    width: 24px;
    height: 24px;
    border-width: 3px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.empty-state svg {
    color: #999999;
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #666666;
}

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

.load-more-state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 0;
    color: #4a5568;
    font-size: 0.95rem;
}

/* Event Card */
.event-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: #2c384d;
}

/* Event Card Image - Prominent Promotional Image */
.event-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
}

.event-promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-promo-image {
    transform: scale(1.05);
}

.event-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f0f8 0%, #f0f4f8 100%);
    color: #999999;
}

.event-image-placeholder svg {
    width: 48px;
    height: 48px;
}

/* Event Card Content */
.event-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-card-header {
    margin-bottom: 1rem;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.event-organizer {
    font-size: 0.9rem;
    color: #2c384d;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.event-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666666;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.event-card-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c384d;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-card-date svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.event-description {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e8e8e8;
}

.btn-view-event {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: #2c384d;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-view-event:hover {
    background: #1e2835;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 56, 77, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.modal-content {
    background: #ffffff;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-large {
    max-width: 1000px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f0f0f0;
    color: #1a1a1a;
}

.modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid #e8e8e8;
    background: #fafafa;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

/* Event Detail Modal Content */
.event-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.event-main-image-container {
    position: sticky;
    top: 2rem;
}

.event-main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    max-height: 600px;
    margin-bottom: 1rem;
}

.event-image-placeholder-large {
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f0f8 0%, #f0f4f8 100%);
    color: #999999;
    border-radius: 12px;
    padding: 2rem;
}

.event-image-placeholder-large svg {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.event-image-placeholder-large p {
    font-size: 1rem;
    color: #999999;
}

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

.event-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.event-thumbnail:hover {
    opacity: 1;
    border-color: #2c384d;
    transform: scale(1.05);
}

.event-thumbnail.active {
    opacity: 1;
    border-color: #2c384d;
    box-shadow: 0 2px 8px rgba(44, 56, 77, 0.3);
}

.event-detail-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-detail-section {
    margin-bottom: 0;
}

.event-detail-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.event-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8e8e8;
}

.event-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.event-detail-item strong {
    min-width: 120px;
    color: #1a1a1a;
    font-weight: 600;
}

.event-detail-item span {
    color: #666666;
    flex: 1;
}

.event-description-full {
    color: #666666;
    line-height: 1.8;
}

.event-description-full p {
    margin-bottom: 1rem;
}

.event-description-full p:last-child {
    margin-bottom: 0;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    min-height: 44px; /* Better touch target for mobile */
}

.btn-primary {
    background: #2c384d;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(44, 56, 77, 0.2);
}

.btn-primary:hover {
    background: #1e2835;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 56, 77, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(44, 56, 77, 0.2);
}

.btn-secondary {
    background: #ffffff;
    color: #2c384d;
    border: 2px solid #e8e8e8;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #2c384d;
    color: #1e2835;
}

.btn-secondary:active {
    background: #f0f0f0;
    transform: translateY(0);
}

.btn-secondary svg {
    flex-shrink: 0;
}

/* Loading Animation for Buttons */
.btn-loading {
    pointer-events: none;
    opacity: 0.8;
    cursor: not-allowed;
}

.loading-dots {
    display: inline-block;
    position: relative;
}

.loading-dots::after {
    content: '.';
    display: inline-block;
    animation: loading-dots 1.4s infinite;
}

@keyframes loading-dots {
    0% {
        content: '.';
    }
    33% {
        content: '..';
    }
    66% {
        content: '...';
    }
    100% {
        content: '.';
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .filters-row {
        flex-direction: column;
    }

    .filters-row .custom-select {
        width: 100%;
    }

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

    .event-card-image {
        height: 200px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .modal-content {
        margin: 1rem;
    }

    .modal-header,
    .modal-body {
        padding: 1rem;
    }

    .modal-footer {
        padding: 1rem;
        flex-direction: column;
        gap: 0.75rem;
        justify-content: stretch;
        background: #ffffff;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    }

    .modal-footer .btn-primary,
    .modal-footer .btn-secondary {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 12px;
        font-weight: 600;
    }

    .modal-footer .btn-secondary {
        order: -1; /* Share button appears first on mobile */
    }

    .modal-footer .btn-primary {
        order: 1; /* Buy ticket button appears second on mobile */
    }

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

    .event-main-image-container {
        position: relative;
        top: 0;
    }

    .event-main-image {
        max-height: 400px;
    }

    .event-image-placeholder-large {
        min-height: 300px;
    }
}

/* Ticket Purchase Modal Styles */
.ticket-purchase-modal {
    max-width: 550px;
}

.ticket-purchase-modal .modal-header {
    background: linear-gradient(135deg, #2c384d 0%, #1e2835 100%);
    color: #ffffff;
    border-bottom: none;
    padding: 2rem;
}

.ticket-purchase-modal .modal-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.ticket-purchase-modal .modal-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ticket-purchase-modal .modal-icon svg {
    color: #ffffff;
}

.ticket-purchase-modal .modal-header h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.ticket-purchase-modal .modal-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}

.ticket-purchase-modal .modal-close {
    color: rgba(255, 255, 255, 0.8);
}

.ticket-purchase-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.ticket-purchase-modal .modal-body {
    padding: 2.5rem;
}

.ticket-purchase-modal .form-group {
    margin-bottom: 1.75rem;
}

.ticket-purchase-modal .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.ticket-purchase-modal .form-group label svg {
    color: #2c384d;
    flex-shrink: 0;
}

.ticket-purchase-modal .form-group .required {
    color: #d32f2f;
    margin-left: 0.25rem;
}

.ticket-purchase-modal .form-group input[type="text"],
.ticket-purchase-modal .form-group input[type="email"] {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #1a1a1a;
}

.ticket-purchase-modal .form-group input[type="text"]:hover,
.ticket-purchase-modal .form-group input[type="email"]:hover {
    border-color: #d0d0d0;
}

.ticket-purchase-modal .form-group input[type="text"]:focus,
.ticket-purchase-modal .form-group input[type="email"]:focus {
    outline: none;
    border-color: #2c384d;
    box-shadow: 0 0 0 4px rgba(44, 56, 77, 0.1);
    background: #ffffff;
}

.ticket-purchase-modal .form-group input[type="text"]::placeholder,
.ticket-purchase-modal .form-group input[type="email"]::placeholder {
    color: #999999;
}

.ticket-purchase-modal .form-group input[type="email"][readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
    color: #666666;
}

.ticket-purchase-modal .form-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.5;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #2c384d;
}

.ticket-purchase-modal .form-hint svg {
    flex-shrink: 0;
    color: #2c384d;
}

.ticket-purchase-modal .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
}

.ticket-purchase-modal .form-actions .btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    justify-content: center;
}

.ticket-purchase-modal .form-actions .btn-primary {
    background: #2c384d;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(44, 56, 77, 0.2);
}

.ticket-purchase-modal .form-actions .btn-primary:hover {
    background: #1e2835;
    box-shadow: 0 4px 12px rgba(44, 56, 77, 0.3);
    transform: translateY(-1px);
}

.ticket-purchase-modal .form-actions .btn-primary:active {
    transform: translateY(0);
}

.ticket-purchase-modal .form-actions .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.ticket-purchase-modal .form-actions .btn-primary svg {
    transition: transform 0.3s ease;
}

.ticket-purchase-modal .form-actions .btn-primary:hover svg {
    transform: translateX(2px);
}

.ticket-purchase-modal .form-actions .btn-secondary {
    background: #f5f5f5;
    color: #1a1a1a;
    border: 2px solid #e8e8e8;
}

.ticket-purchase-modal .form-actions .btn-secondary:hover {
    background: #e8e8e8;
    border-color: #d0d0d0;
    transform: translateY(-1px);
}

.ticket-purchase-modal .form-actions .btn-secondary:active {
    transform: translateY(0);
}

/* Responsive adjustments for ticket purchase modal */
@media (max-width: 768px) {
    .ticket-purchase-modal .modal-body {
        padding: 1.5rem;
    }
    
    .ticket-purchase-modal .modal-header {
        padding: 1.5rem;
    }
    
    .ticket-purchase-modal .modal-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .ticket-purchase-modal .form-actions {
        flex-direction: column-reverse;
    }
    
    .ticket-purchase-modal .form-actions .btn {
        width: 100%;
    }
}

