/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

/* Cover Page Styles */
.cover-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.cover-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255,215,0,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cover-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 40px 20px;
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.cover-banner {
    font-size: 1.5rem;
    font-weight: 300;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-align: center;
    padding: 15px 30px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 4px;
    background: rgba(212, 175, 55, 0.05);
    margin-top: 20px;
}

.cover-names {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.cover-names img {
    max-width: 80%;
    max-height: 32vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.cover-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-bottom: 40px;
}

.cover-instruction {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.cover-logo-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.cover-logo-btn:hover {
    transform: scale(1.05);
}

.cover-logo-btn:active {
    transform: scale(0.98);
}

.cover-logo-btn img {
    max-width: 180px;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.3));
    mix-blend-mode: multiply;
}

/* Responsive Cover Page */
@media (min-width: 768px) {
    .cover-banner {
        font-size: 1.8rem;
        letter-spacing: 8px;
        padding: 20px 40px;
    }

    .cover-names img {
        max-height: 50vh;
    }

    .cover-logo-btn img {
        max-width: 220px;
        max-height: 220px;
    }

    .cover-instruction {
        font-size: 1rem;
    }
}

/* Slideshow Styles - Mobile First */
.slideshow-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    position: relative;
}

.slideshow-wrapper {
    width: 100%;
    max-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.slide {
    display: none;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding: 60px 0 80px 0;
}

.slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    position: relative;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

/* Navigation Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(240, 240, 240, 0.85);
    border: none;
    color: #333;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%) scale(1.05);
}

.arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.arrow-left {
    left: 12px;
}

.arrow-right {
    right: 12px;
}

.arrow svg {
    width: 22px;
    height: 22px;
    stroke: #444;
    stroke-width: 2.5;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Music Control Button */
.music-control {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.music-control:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.music-control:active {
    transform: scale(0.95);
}

.music-icon {
    width: 24px;
    height: 24px;
}

/* Tablet and Desktop - Constrain image size */
@media (min-width: 768px) {
    .slideshow-wrapper {
        max-width: 800px;
        padding: 20px;
    }

    .slide {
        height: auto;
        min-height: 80vh;
        padding: 0;
    }

    .slide img {
        max-height: 90vh;
    }

    .arrow {
        width: 48px;
        height: 48px;
        background: rgba(240, 240, 240, 0.9);
        border: none;
    }

    .arrow:hover {
        background: rgba(255, 255, 255, 0.98);
    }

    .arrow-left {
        left: 32px;
    }

    .arrow-right {
        right: 32px;
    }

    .music-control {
        top: 24px;
        right: 24px;
        width: 56px;
        height: 56px;
    }
}

@media (min-width: 1024px) {
    .slideshow-wrapper {
        max-width: 1000px;
    }
}

/* Guest RSVP Page */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
    color: #2c3e50;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #34495e;
}

.subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 30px;
}

#loading {
    text-align: center;
    padding: 40px;
    color: #7f8c8d;
}

.error-message {
    background: #fee;
    border: 2px solid #fcc;
    color: #c33;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-message h2 {
    color: #27ae60;
    margin-bottom: 10px;
}

/* Form Elements */
.member-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    background: #f9f9f9;
}

.member-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
}

.radio-label input[type="radio"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-label span {
    color: #555;
}

.form-actions {
    margin-top: 30px;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #3498db;
    color: white;
    width: 100%;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-icon {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 10px;
    transition: transform 0.2s;
}

.btn-icon:hover {
    transform: scale(1.2);
}

/* Admin Dashboard */
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.admin-header {
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.admin-header h1 {
    margin: 0;
    font-size: 1.8rem;
    text-align: left;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.header-actions .btn {
    width: auto;
}

/* Stats Bar */
.stats-bar {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

/* Families List */
.families-list {
    display: grid;
    gap: 20px;
}

.family-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.family-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ecf0f1;
}

.family-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #2c3e50;
}

.family-actions {
    display: flex;
    gap: 5px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.member-badge {
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-pending {
    background: #f39c12;
    color: white;
}

.status-yes {
    background: #27ae60;
    color: white;
}

.status-no {
    background: #e74c3c;
    color: white;
}

.status {
    font-weight: 700;
    font-size: 1rem;
}

.family-link {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ecf0f1;
}

.family-link small {
    color: #7f8c8d;
    font-size: 0.85rem;
    word-break: break-all;
}

.loading, .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.error {
    color: #e74c3c;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 2px solid #ecf0f1;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #7f8c8d;
    line-height: 1;
}

.close-btn:hover {
    color: #2c3e50;
}

#family-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input[type="text"]:focus {
    outline: none;
    border-color: #3498db;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #3498db;
}

.member-input {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 6px;
}

.member-input input[type="text"] {
    flex: 1;
    min-width: 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    white-space: nowrap;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 5px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 30px;
}

.modal-actions .btn {
    width: auto;
}

/* Event Toggles in Modal */
.event-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.event-toggles .checkbox-label {
    background: #f5f7fa;
    padding: 10px 15px;
    border-radius: 6px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.event-toggles .checkbox-label:hover {
    border-color: #3498db;
}

.event-toggles input[type="checkbox"]:checked + span {
    color: #3498db;
    font-weight: 600;
}

/* Event Badges on Family Cards */
.event-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.event-badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-main {
    background: #e8f5e9;
    color: #2e7d32;
}

.event-madwo {
    background: #fff3e0;
    color: #e65100;
}

.event-shitaabi {
    background: #e3f2fd;
    color: #1565c0;
}

.event-mosala {
    background: #f3e5f5;
    color: #6a1b9a;
}

/* RSVP Wizard Styles */
.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 8px;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
    border-radius: 8px;
    background: #f5f7fa;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.wizard-step.active {
    background: #3498db;
    border-color: #3498db;
    color: white;
}

.wizard-step.completed {
    background: #27ae60;
    border-color: #27ae60;
    color: white;
}

.step-number {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.step-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.wizard-step-connector {
    width: 30px;
    height: 2px;
    background: #e0e0e0;
}

#event-title {
    text-align: center;
    color: #3498db;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

#family-name {
    text-align: center;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.wizard-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.wizard-actions .btn {
    width: auto;
    min-width: 140px;
}

.head-badge {
    margin-left: 5px;
}

/* Per-Event Status Badges in Admin */
.member-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.member-name-label {
    font-weight: 600;
    color: #2c3e50;
}

.member-event-statuses {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.event-status {
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.event-status.status-pending {
    background: #ffeaa7;
    color: #d68910;
}

.event-status.status-yes {
    background: #d5f4e6;
    color: #27ae60;
}

.event-status.status-no {
    background: #fce4e4;
    color: #e74c3c;
}

/* Member-Event Matrix in Admin Modal */
.member-event-matrix {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.matrix-header {
    display: grid;
    grid-template-columns: 1fr 60px 50px 50px 50px 40px;
    background: #f5f7fa;
    border-bottom: 2px solid #e0e0e0;
    font-weight: 600;
    font-size: 0.85rem;
    color: #2c3e50;
}

.matrix-row {
    display: grid;
    grid-template-columns: 1fr 60px 50px 50px 50px 40px;
    border-bottom: 1px solid #e0e0e0;
    background: white;
}

.matrix-row:last-child {
    border-bottom: none;
}

.matrix-row:hover {
    background: #f9f9f9;
}

.matrix-cell {
    padding: 10px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.matrix-name-header,
.matrix-name-cell {
    justify-content: flex-start;
    padding-left: 15px;
}

.matrix-name-cell input {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.9rem;
}

.matrix-name-cell input:focus {
    outline: none;
    border-color: #3498db;
}

.matrix-event-header {
    font-size: 0.75rem;
    color: #7f8c8d;
}

.matrix-event-cell input[type="checkbox"],
.matrix-head-cell input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.matrix-action-cell {
    padding: 5px;
}

.matrix-action-cell .btn-icon {
    font-size: 1rem;
    padding: 3px 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .card {
        padding: 30px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .admin-header {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .member-input {
        flex-direction: column;
        align-items: stretch;
    }

    .modal-content {
        width: 95%;
    }

    .wizard-progress {
        gap: 5px;
    }

    .wizard-step {
        padding: 8px 10px;
    }

    .step-label {
        font-size: 0.65rem;
    }

    .wizard-step-connector {
        width: 15px;
    }

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

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

    /* Matrix responsive */
    .matrix-header,
    .matrix-row {
        grid-template-columns: 1fr 50px 40px 40px 40px 35px;
        font-size: 0.8rem;
    }

    .matrix-cell {
        padding: 8px 4px;
    }

    .matrix-name-cell {
        padding-left: 8px;
    }

    .matrix-name-cell input {
        padding: 4px 6px;
        font-size: 0.85rem;
    }

    .matrix-event-cell input[type="checkbox"],
    .matrix-head-cell input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
}

/* Venue Details Card */
.venue-details-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.venue-label {
    font-size: 1rem;
    font-weight: 500;
    color: #6c757d;
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #dee2e6;
    font-style: italic;
}

.venue-info {
    margin-bottom: 15px;
}

.venue-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.venue-row:last-child {
    margin-bottom: 0;
}

.venue-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.venue-text {
    flex: 1;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.5;
}

.venue-text strong {
    color: #2c3e50;
}

.venue-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
}

.btn-outline {
    background: white;
    border: 2px solid #3498db;
    color: #3498db;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-outline:hover {
    background: #3498db;
    color: white;
}

/* Success Page Calendar Section */
.success-calendar-section {
    margin-top: 30px;
    text-align: left;
}

.success-calendar-section h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.success-event-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.success-event-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
}

.success-event-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.success-event-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 10px;
}

.success-event-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #495057;
}

.success-event-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Responsive adjustments for venue details */
@media (max-width: 768px) {
    .venue-details-card {
        padding: 15px;
    }

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

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

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

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