body {
    margin: 0;
    font-family: Arial, sans-serif;
}
.header-wrap {
    display: block;
}
.site-header {
    width: 100%;
    display: block;
    height: clamp(60px, 10vw, 120px);
    object-fit: cover;
}
.header-nav {
    background-color: #0a1a3b;
    display: flex;
    align-items: center;
    padding: 10px 16px;
}
.nav-left {
    flex: 1;
    display: flex;
    align-items: center;
}
.btn-create {
    padding: 6px 16px;
    font-size: clamp(12px, 1.2vw, 16px);
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    transition: background-color 0.2s, color 0.2s;
}
.btn-create:hover {
    background-color: #ffffff;
    color: #0a1a3b;
}
.nav-links {
    display: flex;
    justify-content: center;
}
.nav-links a {
    color: #ffffff;
    padding: 8px 16px;
    text-decoration: none;
    font-size: clamp(13px, 1.5vw, 20px);
    font-weight: 600;
    transition: opacity 0.2s;
}
.nav-links a:hover {
    opacity: 0.6;
}
.nav-auth {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}
.btn-signup, .btn-login {
    padding: 6px 16px;
    font-size: clamp(12px, 1.2vw, 16px);
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid #ffffff;
    transition: background-color 0.2s, color 0.2s;
}
.btn-signup {
    background-color: #ffffff;
    color: #0a1a3b;
}
.btn-signup:hover {
    background-color: transparent;
    color: #ffffff;
}
.btn-login {
    background-color: transparent;
    color: #ffffff;
}
.btn-login:hover {
    background-color: #ffffff;
    color: #0a1a3b;
}
#nav-logged-in {
    display: none;
    align-items: center;
    gap: 10px;
}
#nav-user-name {
    color: #ffffff;
    font-size: clamp(12px, 1.2vw, 15px);
    font-weight: 600;
}
.nav-role-badge {
    background-color: rgba(255,255,255,0.15);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}
.btn-signout {
    padding: 6px 16px;
    font-size: clamp(12px, 1.2vw, 16px);
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    transition: background-color 0.2s, color 0.2s;
}
.btn-signout:hover {
    background-color: #ffffff;
    color: #0a1a3b;
}
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    flex-shrink: 0;
}
.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}
/* Animate to X when open */
.header-nav.nav-open .nav-hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.header-nav.nav-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
}
.header-nav.nav-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .header-nav {
        flex-wrap: wrap;
        align-items: center;
    }
    .nav-left {
        flex: 1;
    }
    .nav-hamburger {
        display: flex;
    }
    .nav-links {
        display: none;
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 6px 0;
        border-top: 1px solid rgba(255,255,255,0.15);
        margin-top: 8px;
        justify-content: flex-start;
    }
    .nav-links a {
        width: 100%;
        padding: 11px 4px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        box-sizing: border-box;
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
    .nav-auth {
        display: none;
        order: 4;
        width: 100%;
        flex: none;
        justify-content: flex-start;
        padding: 12px 0 4px;
        border-top: 1px solid rgba(255,255,255,0.15);
        gap: 8px;
        flex-wrap: wrap;
    }
    .header-nav.nav-open .nav-links,
    .header-nav.nav-open .nav-auth {
        display: flex;
    }
    #nav-logged-in {
        flex-wrap: wrap;
    }

    /* Modal: full-width, top-aligned, scrollable overlay on mobile */
    .auth-modal {
        align-items: flex-start;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 16px;
        box-sizing: border-box;
    }
    .auth-modal-content {
        width: 100%;
        max-width: 100%;
        max-height: none;
        padding: 48px 16px 24px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    .coach-detail-content {
        max-height: none;
        overflow-y: visible;
    }
    /* X button fixed in viewport corner so it's always reachable */
    .auth-close {
        position: fixed;
        top: 20px;
        right: 16px;
        z-index: 1002;
        font-size: 28px;
        background: #ffffff;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        line-height: 1;
        padding: 0;
    }
}

/* Auth Modal */
.auth-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.auth-modal.active {
    display: flex;
}
.auth-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
.auth-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    padding: 36px 32px 28px;
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.auth-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}
.auth-close:hover {
    color: #000;
}
.auth-modal-content h2 {
    margin: 0 0 20px;
    color: #0a1a3b;
    font-size: 22px;
}
.btn-google-signin {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    background: #ffffff;
    font-size: 15px;
    font-weight: 600;
    color: #3c4043;
    cursor: pointer;
    transition: background-color 0.2s;
}
.btn-google-signin:hover {
    background-color: #f8f9fa;
}
.auth-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0;
    color: #aaa;
    font-size: 13px;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}
#auth-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#auth-email,
#auth-password {
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}
#auth-email:focus,
#auth-password:focus {
    border-color: #0a1a3b;
}
.auth-error {
    color: #d32f2f;
    font-size: 13px;
    margin: 0;
    min-height: 18px;
}
#auth-submit-btn {
    padding: 10px;
    background-color: #0a1a3b;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}
#auth-submit-btn:hover {
    opacity: 0.85;
}
.auth-switch-text {
    text-align: center;
    font-size: 13px;
    color: #555;
    margin: 16px 0 0;
}
.auth-switch-text a {
    color: #0a1a3b;
    font-weight: 600;
    text-decoration: none;
}
.auth-switch-text a:hover {
    text-decoration: underline;
}

/* Role Picker Modal */
.role-picker-sub {
    color: #555;
    font-size: 14px;
    margin: -12px 0 20px;
}
#role-picker-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#role-picker-select {
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    font-family: inherit;
}
#role-picker-select:focus {
    border-color: #0a1a3b;
}
#role-picker-submit {
    padding: 10px;
    background-color: #0a1a3b;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}
#role-picker-submit:hover { opacity: 0.85; }
#role-picker-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Sign Up Modal */
.signup-modal-content {
    max-width: 440px;
}
#signup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.signup-name-row {
    display: flex;
    gap: 10px;
}
.signup-name-row input {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    font-family: inherit;
}
.signup-name-row input:focus {
    border-color: #0a1a3b;
}
#signup-email,
#signup-password,
#signup-confirm,
#signup-role {
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    font-family: inherit;
}
#signup-email:focus,
#signup-password:focus,
#signup-confirm:focus,
#signup-role:focus {
    border-color: #0a1a3b;
}
#signup-submit-btn {
    padding: 10px;
    background-color: #0a1a3b;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}
#signup-submit-btn:hover {
    opacity: 0.85;
}
#signup-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.content {
    padding: 20px 20px 60px;
    text-align: center;
}

/* Rink filter controls */
#rink-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

#rink-state-filter {
    padding: 7px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    width: 220px;
}

#rink-state-filter:focus {
    border-color: #0a1a3b;
}

#rink-search {
    flex: 1;
    min-width: 180px;
    padding: 7px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

#rink-search:focus {
    border-color: #0a1a3b;
}

.btn-rink-search {
    padding: 7px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid #0a1a3b;
    background-color: #0a1a3b;
    color: #ffffff;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.btn-rink-search:hover {
    opacity: 0.85;
}

.btn-rink-search:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Rink Cards */
.rink-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    text-align: left;
}

.rink-card {
    height: 175px;
    border-radius: 8px;
    cursor: pointer;
    perspective: 1000px;
    position: relative;
    z-index: 0;
    --flip-scale: 1;
    transition: transform 0.55s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.rink-card.flipped {
    transform: scale(var(--flip-scale));
    z-index: 10;
}

.rink-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

.rink-card.flipped .rink-card-inner {
    transform: rotateY(180deg);
}

.rink-card-front,
.rink-card-back {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border: 1px solid #dde2ef;
    overflow: hidden;
}

.rink-card-front {
    background: #ffffff;
    padding: 16px 18px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.rink-card:hover .rink-card-front {
    box-shadow: 0 4px 16px rgba(10,26,59,0.12);
    border-color: #0a1a3b;
}

.rink-card-back {
    transform: rotateY(180deg);
}

.rink-card-back iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.rink-card-no-location {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 13px;
    color: #888;
    background: #f9f9f9;
}

.rink-card-close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: #333;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    transition: background 0.15s;
    padding: 0;
}

.rink-card-close:hover {
    background: #ffffff;
    color: #000;
}


.rink-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.rink-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #0a1a3b;
    line-height: 1.3;
}

.rink-outdoor-badge {
    background-color: #e8f5e9;
    color: #2e7d32;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex-shrink: 0;
}

.rink-card-address {
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
}

.rink-card-detail {
    font-size: 13px;
    color: #666;
    margin-top: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rink-card-detail a {
    color: #0a1a3b;
    text-decoration: none;
}

.rink-card-detail a:hover {
    text-decoration: underline;
}

.rink-card-map-hint {
    margin-top: auto;
    padding-top: 6px;
    font-size: 11px;
    color: #bbb;
    text-align: right;
}
.rink-card-front .admin-card-actions {
    margin-top: 0;
}

/* Find Ice Time filters */
#fit-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
#fit-state-filter,
#fit-rink-filter,
#fit-type-filter,
#fit-search {
    padding: 7px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}
#fit-state-filter,
#fit-rink-filter,
#fit-type-filter {
    width: 180px;
}
#fit-search {
    flex: 1;
    min-width: 180px;
}
#fit-state-filter:focus,
#fit-rink-filter:focus,
#fit-type-filter:focus,
#fit-search:focus {
    border-color: #0a1a3b;
}

/* Event Cards */
#events-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    text-align: left;
}
.event-card {
    border: 1px solid #dde2ef;
    border-radius: 8px;
    padding: 16px 18px;
    cursor: pointer;
    transition: box-shadow 0.2s, border-color 0.2s;
    background: #ffffff;
}
.event-card:hover {
    box-shadow: 0 4px 16px rgba(10,26,59,0.12);
    border-color: #0a1a3b;
}
.event-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.event-card-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.event-type-badge {
    background-color: #0a1a3b;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.04em;
}
.event-card-state {
    font-size: 12px;
    font-weight: 700;
    color: #888;
}
.event-card-name {
    font-size: 16px;
    font-weight: 700;
    color: #0a1a3b;
    margin-bottom: 4px;
}
.event-card-rink {
    font-size: 13px;
    color: #444;
    margin-bottom: 8px;
}
.event-card-date {
    font-size: 13px;
    color: #0a1a3b;
    font-weight: 600;
}
.btn-delete-event {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    color: #bbb;
    border-radius: 4px;
    transition: color 0.15s, background-color 0.15s;
    line-height: 1;
}
.btn-delete-event:hover {
    color: #d32f2f;
    background-color: rgba(211, 47, 47, 0.08);
}
.btn-delete-event:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.events-loading {
    text-align: center;
    color: #888;
    padding: 40px 0;
}

/* Event Detail Modal */
.event-detail-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}
.event-detail-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.05em;
}
.event-detail-value {
    font-size: 15px;
    color: #222;
}
.event-detail-value a {
    color: #0a1a3b;
}

/* Create Event Modal */
.create-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 40px 16px;
}
.create-modal.active {
    display: flex;
}
.create-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
.create-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    padding: 36px 32px 28px;
    width: 100%;
    max-width: 540px;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.create-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}
.create-close:hover { color: #000; }
.create-modal-content h2 {
    margin: 0 0 24px;
    color: #0a1a3b;
    font-size: 22px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}
.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #0a1a3b;
}
.spot-limit-label,
.fit-my-events-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #0a1a3b;
    white-space: nowrap;
}
.spot-limit-label input[type="checkbox"],
.fit-my-events-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}
.fit-my-events-label {
    font-size: 14px;
    padding: 6px 10px;
    border: 1px solid #dde2ef;
    border-radius: 5px;
    background: #fff;
}
.form-optional {
    font-weight: 400;
    color: #888;
    font-size: 12px;
}
.form-group input[type="text"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group select,
.form-group textarea {
    padding: 9px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0a1a3b;
}
.form-group select:disabled {
    background-color: #f5f5f5;
    color: #aaa;
}
.form-group textarea {
    resize: vertical;
}
.input-dollar {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}
.input-dollar span {
    padding: 9px 10px;
    background: #f5f5f5;
    color: #555;
    font-size: 14px;
    border-right: 1px solid #ccc;
}
.input-dollar input {
    border: none !important;
    flex: 1;
}
.input-dollar input:focus {
    outline: none;
}
.datetime-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}
.datetime-row input[type="date"],
.datetime-row input[type="time"] {
    flex: 1;
    width: auto;
}
.btn-remove-dt {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}
.btn-remove-dt:hover { color: #d32f2f; }
.btn-add-datetime {
    background: none;
    border: 1px dashed #aaa;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    margin-top: 2px;
    transition: border-color 0.2s, color 0.2s;
}
.btn-add-datetime:hover {
    border-color: #0a1a3b;
    color: #0a1a3b;
}
.btn-create-submit {
    width: 100%;
    padding: 11px;
    background-color: #0a1a3b;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: opacity 0.2s;
}
.btn-create-submit:hover { opacity: 0.85; }

/* Coach DB filter controls */
#coach-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
#coach-state-filter {
    padding: 7px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    width: 220px;
}
#coach-state-filter:focus {
    border-color: #0a1a3b;
}
#coach-search {
    flex: 1;
    min-width: 180px;
    padding: 7px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}
#coach-search:focus {
    border-color: #0a1a3b;
}

/* Areas Served checkbox list */
.state-checkbox-list {
    border: 1px solid #ccc;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    padding: 8px 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 12px;
}
.state-checkbox-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    padding: 3px 0;
    white-space: nowrap;
}
.state-checkbox-item input[type="checkbox"] {
    cursor: pointer;
    accent-color: #0a1a3b;
    flex-shrink: 0;
}

/* Coach DB Section */
#coach-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.btn-coach-profile {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid #0a1a3b;
    background-color: #0a1a3b;
    color: #ffffff;
    transition: opacity 0.2s;
}
.btn-coach-profile:hover {
    opacity: 0.85;
}

/* Coach Cards */
.coach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    text-align: left;
}
.coach-card {
    border: 1px solid #dde2ef;
    border-radius: 8px;
    padding: 16px 18px;
    cursor: pointer;
    transition: box-shadow 0.2s, border-color 0.2s;
    background: #ffffff;
}
.coach-card:hover {
    box-shadow: 0 4px 16px rgba(10,26,59,0.12);
    border-color: #0a1a3b;
}
.coach-card-name {
    font-size: 16px;
    font-weight: 700;
    color: #0a1a3b;
    margin-bottom: 6px;
}
.coach-card-nickname {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}
.coach-card-exp {
    font-size: 13px;
    color: #0a1a3b;
    font-weight: 600;
    margin-bottom: 6px;
}
.coach-card-focus {
    font-size: 13px;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
}
.coach-card-areas {
    font-size: 12px;
    color: #888;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Coach Detail Modal */
.coach-detail-content {
    max-width: 520px;
    max-height: 85vh;
    overflow-y: auto;
}
.coach-detail-name {
    font-size: 20px;
    font-weight: 700;
    color: #0a1a3b;
    margin-bottom: 20px;
}
.coach-detail-content a {
    color: #0a1a3b;
}

/* Coach Profile Form */
.experience-row {
    display: flex;
    gap: 8px;
    align-items: center;
}
.experience-row .year-input {
    width: 72px !important;
    flex-shrink: 0;
    text-align: center;
    padding: 9px 8px !important;
}
.experience-row .exp-desc {
    flex: 1;
    min-width: 0;
    padding: 9px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
}
.experience-row .exp-desc:focus {
    border-color: #0a1a3b;
}
.btn-remove-exp {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    flex-shrink: 0;
}
.btn-remove-exp:hover { color: #d32f2f; }
.btn-add-exp {
    background: none;
    border: 1px dashed #aaa;
    border-radius: 4px;
    padding: 5px 12px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    margin-top: 6px;
    transition: border-color 0.2s, color 0.2s;
}
.btn-add-exp:hover {
    border-color: #0a1a3b;
    color: #0a1a3b;
}
.form-hint {
    font-size: 12px;
    color: #999;
    margin: 4px 0 0;
}

/* Coach detail headshot */
.coach-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 16px;
}
.coach-headshot-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #e8ecf5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aaac4;
    flex-shrink: 0;
}
.coach-headshot-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e8ecf5;
}
.headshot-form-preview {
    margin-bottom: 8px;
}
.headshot-form-preview img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #dde2ef;
    display: block;
}

/* Tournament Finder controls */
#tournament-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
#tournament-host-filter,
#tournament-state-filter {
    padding: 7px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    width: 180px;
}
#tournament-host-filter:focus,
#tournament-state-filter:focus { border-color: #0a1a3b; }
#tournament-search {
    flex: 1;
    min-width: 180px;
    padding: 7px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}
#tournament-search:focus { border-color: #0a1a3b; }
#tournament-age-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    width: 100%;
}
.age-filter-label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-right: 2px;
}
#tournament-age-filter label {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 20px;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
#tournament-age-filter label:hover { border-color: #0a1a3b; }
#tournament-age-filter label.checked {
    background: #0a1a3b;
    color: #fff;
    border-color: #0a1a3b;
}
#tournament-age-filter input[type="checkbox"] { display: none; }

/* Tournament list */
#tournament-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}
.tournament-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border: 1px solid #dde2ef;
    border-radius: 8px;
    padding: 14px 18px;
    cursor: pointer;
    transition: box-shadow 0.2s, border-color 0.2s;
    background: #ffffff;
}
.tournament-card:hover {
    box-shadow: 0 4px 16px rgba(10,26,59,0.12);
    border-color: #0a1a3b;
}
.tournament-card-left {
    flex: 1;
    min-width: 0;
}
.tournament-card-name {
    font-size: 16px;
    font-weight: 700;
    color: #0a1a3b;
    margin-bottom: 4px;
}
.tournament-card-host {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 2px;
}
.tournament-card-location {
    font-size: 13px;
    color: #666;
}
.tournament-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}
.tournament-card-date {
    font-size: 13px;
    font-weight: 600;
    color: #0a1a3b;
    white-space: nowrap;
}
.tournament-card-ages {
    font-size: 12px;
    color: #888;
    text-align: right;
}

/* Admin Section */
.admin-section-title {
    color: #0a1a3b;
    font-size: 20px;
    margin: 0 0 20px;
    text-align: left;
}
.pending-user-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border: 1px solid #dde2ef;
    border-radius: 8px;
    background: #ffffff;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.pending-user-info {
    flex: 1;
    min-width: 0;
}
.pending-user-name {
    font-size: 15px;
    font-weight: 700;
    color: #0a1a3b;
}
.pending-user-email {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}
.pending-role-badge {
    background-color: #e8ecf5;
    color: #0a1a3b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.pending-user-actions {
    display: flex;
    gap: 8px;
}
.btn-approve,
.btn-deny {
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid;
    transition: background-color 0.2s, color 0.2s;
}
.btn-approve {
    background-color: #0a1a3b;
    color: #ffffff;
    border-color: #0a1a3b;
}
.btn-approve:hover {
    opacity: 0.85;
}
.btn-deny {
    background-color: transparent;
    color: #d32f2f;
    border-color: #d32f2f;
}
.btn-deny:hover {
    background-color: #d32f2f;
    color: #ffffff;
}
.btn-approve:disabled,
.btn-deny:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Event sign-up section (inside event detail modal) */
.event-signup-section {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}
.event-spots-remaining {
    font-size: 13px;
    font-weight: 600;
    color: #0a1a3b;
    margin-bottom: 12px;
}
.event-signup-registered {
    font-size: 14px;
    color: #2e7d32;
    font-weight: 600;
    margin: 0;
}
.event-signup-login-prompt {
    font-size: 13px;
    color: #888;
    margin: 0;
}
.btn-event-signup {
    padding: 10px 24px;
    background: #0a1a3b;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}
.btn-event-signup:hover {
    opacity: 0.85;
}
.event-signup-list-title {
    font-size: 13px;
    font-weight: 700;
    color: #0a1a3b;
    margin-bottom: 8px;
}
.event-signup-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.event-signup-table th {
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 8px 4px 0;
    border-bottom: 1px solid #eee;
}
.event-signup-table td {
    padding: 6px 8px 6px 0;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
}
.event-signup-registered-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.event-signup-registered-row .event-signup-registered {
    margin: 0;
}
.btn-cancel-signup {
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    border: 1.5px solid #d32f2f;
    background: transparent;
    color: #d32f2f;
    cursor: pointer;
    transition: background-color 0.15s, color 0.15s;
    white-space: nowrap;
}
.btn-cancel-signup:hover {
    background: #d32f2f;
    color: #fff;
}
.btn-cancel-signup:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.btn-delete-signup {
    padding: 3px 9px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    background: rgba(211,47,47,0.08);
    color: #d32f2f;
    cursor: pointer;
    transition: background-color 0.15s;
    white-space: nowrap;
}
.btn-delete-signup:hover {
    background: rgba(211,47,47,0.18);
}
.btn-delete-signup:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Admin edit/delete buttons on cards */
.admin-card-actions {
    display: flex;
    gap: 6px;
    margin-top: auto;
    padding-top: 8px;
}
.btn-admin-edit,
.btn-admin-delete {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 9px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: background-color 0.15s;
    line-height: 1;
}
.btn-admin-edit {
    background: rgba(10,26,59,0.07);
    color: #0a1a3b;
}
.btn-admin-edit:hover {
    background: rgba(10,26,59,0.16);
}
.btn-admin-delete {
    background: rgba(211,47,47,0.07);
    color: #d32f2f;
}
.btn-admin-delete:hover {
    background: rgba(211,47,47,0.16);
}
.btn-admin-edit:disabled,
.btn-admin-delete:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Footer */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0a1a3b;
    color: rgba(255,255,255,0.65);
    text-align: center;
    padding: 14px 20px;
    font-size: 13px;
    z-index: 500;
}
.site-footer a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}
.site-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}
.footer-divider {
    margin: 0 12px;
    opacity: 0.35;
}

/* Support Form */
#support-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#support-name,
#support-email,
#support-subject,
#support-message {
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}
#support-name:focus,
#support-email:focus,
#support-subject:focus,
#support-message:focus {
    border-color: #0a1a3b;
}
#support-message {
    resize: vertical;
}
#support-submit-btn {
    padding: 10px;
    background-color: #0a1a3b;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}
#support-submit-btn:hover { opacity: 0.85; }
#support-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.support-success {
    color: #2e7d32;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin: 12px 0 0;
}

/* Portal Tabs */
.portal-tabs {
    display: flex;
    border-bottom: 2px solid #e0e4ef;
    margin-bottom: 24px;
}
.portal-tab {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    background: none;
    color: #888;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.15s, border-color 0.15s;
    font-family: inherit;
}
.portal-tab:hover { color: #0a1a3b; }
.portal-tab.active {
    color: #0a1a3b;
    border-bottom-color: #0a1a3b;
}

/* Coach / Rink Manager Portal */
.portal-event-card {
    border: 1px solid #dde2ef;
    border-radius: 8px;
    padding: 18px 20px;
    background: #ffffff;
    margin-bottom: 16px;
    text-align: left;
}
.portal-event-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}
.portal-event-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.portal-event-name {
    font-size: 16px;
    font-weight: 700;
    color: #0a1a3b;
}
.portal-event-meta {
    font-size: 13px;
    color: #555;
    margin-bottom: 16px;
}
.portal-spots {
    color: #0a1a3b;
    font-weight: 600;
}
.portal-spots-full {
    color: #d32f2f;
    font-weight: 600;
}
.portal-registrations-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.portal-registrations-title {
    font-size: 13px;
    font-weight: 700;
    color: #0a1a3b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.btn-portal-email {
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    border: 1.5px solid #0a1a3b;
    background: transparent;
    color: #0a1a3b;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.15s, color 0.15s;
    white-space: nowrap;
}
.btn-portal-email:hover {
    background: #0a1a3b;
    color: #ffffff;
}
.portal-signup-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.portal-signup-table th {
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 8px 4px 0;
    border-bottom: 1px solid #eee;
}
.portal-signup-table td {
    padding: 7px 8px 7px 0;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
}
.portal-signup-table td a {
    color: #0a1a3b;
    text-decoration: none;
}
.portal-signup-table td a:hover {
    text-decoration: underline;
}
.portal-no-signups {
    color: #aaa;
    font-style: italic;
    padding: 10px 0;
}
.btn-add-to-bench {
    padding: 3px 9px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    border: 1.5px solid #0a1a3b;
    background: transparent;
    color: #0a1a3b;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.15s, color 0.15s;
}
.btn-add-to-bench:hover { background: #0a1a3b; color: #fff; }
.btn-add-to-bench:disabled { opacity: 0.45; cursor: not-allowed; }

/* My Bench */
.portal-bench-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.btn-add-bench-player {
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #0a1a3b;
    background: #0a1a3b;
    color: #fff;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: inherit;
}
.btn-add-bench-player:hover { opacity: 0.85; }
.bench-player-card {
    border: 1px solid #dde2ef;
    border-radius: 8px;
    padding: 14px 18px;
    background: #ffffff;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.bench-player-info { flex: 1; min-width: 0; }
.bench-player-name {
    font-size: 15px;
    font-weight: 700;
    color: #0a1a3b;
    margin-bottom: 3px;
}
.bench-player-contact {
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
}
.bench-player-contact a { color: #0a1a3b; text-decoration: none; }
.bench-player-contact a:hover { text-decoration: underline; }
.bench-player-notes { font-size: 12px; color: #888; font-style: italic; }
.bench-player-actions { display: flex; gap: 6px; flex-shrink: 0; margin-top: 2px; }

/* Bench Player Modal Form */
#bench-player-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#bp-name, #bp-email, #bp-phone, #bp-notes {
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}
#bp-name:focus, #bp-email:focus, #bp-phone:focus, #bp-notes:focus { border-color: #0a1a3b; }
#bp-notes { resize: vertical; }
#bp-submit-btn {
    padding: 10px;
    background-color: #0a1a3b;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}
#bp-submit-btn:hover { opacity: 0.85; }
#bp-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Admin — Support Request Cards */
.support-request-card {
    border: 1px solid #dde2ef;
    border-radius: 8px;
    padding: 16px 18px;
    background: #ffffff;
    margin-bottom: 10px;
    text-align: left;
}
.support-request-subject {
    font-size: 15px;
    font-weight: 700;
    color: #0a1a3b;
    margin-bottom: 4px;
}
.support-request-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}
.support-request-meta a {
    color: #0a1a3b;
    text-decoration: none;
}
.support-request-meta a:hover {
    text-decoration: underline;
}
.support-request-message {
    font-size: 14px;
    color: #333;
    white-space: pre-wrap;
    word-break: break-word;
}
.support-request-actions {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
}

/* Email verification banner */
.verify-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    background: #fff8e1;
    border-bottom: 1px solid #ffe082;
    color: #5d4037;
    padding: 10px 20px;
    font-size: 13px;
}
.verify-banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.btn-resend-verify {
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid #f9a825;
    background: #fff;
    color: #f57f17;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}
.btn-resend-verify:hover { background: #fff8e1; }
.btn-resend-verify:disabled { opacity: 0.5; cursor: not-allowed; }
#verified-check-link {
    font-size: 12px;
    color: #5d4037;
    text-decoration: underline;
}

/* Forgot password link in login modal */
.auth-forgot-wrap {
    text-align: right;
    margin: -4px 0 12px;
}
.auth-forgot-wrap a {
    font-size: 12px;
    color: #666;
    text-decoration: underline;
}
.auth-forgot-wrap a:hover { color: #0a1a3b; }

/* Password reset section inside login modal */
.auth-reset-sub {
    font-size: 13px;
    color: #555;
    margin-bottom: 14px;
    text-align: center;
}
.auth-submit-btn {
    width: 100%;
    padding: 10px;
    background: #0a1a3b;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    margin-top: 4px;
    transition: opacity 0.2s;
}
.auth-submit-btn:hover { opacity: 0.88; }
.auth-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.auth-success {
    color: #2e7d32;
    font-size: 13px;
    text-align: center;
    margin: 8px 0;
}

/* Logo / flyer image in event & tournament detail modals */
.detail-flyer-img {
    display: block;
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 16px;
    background: #f5f7fa;
}

/* Age group checkbox pills (create form) */
.age-group-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}
.age-group-checkboxes label {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 20px;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.age-group-checkboxes label:hover { border-color: #0a1a3b; }
.age-group-checkboxes label:has(input:checked) {
    background: #0a1a3b;
    color: #fff;
    border-color: #0a1a3b;
}
.age-group-checkboxes input[type="checkbox"] { display: none; }

/* FAQ */
.faq-heading {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #0a1a3b;
    margin-bottom: 24px;
    text-align: center;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #dde3ef;
}
.faq-item:first-child {
    border-top: 1px solid #dde3ef;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 36px 16px 4px;
    font-size: 15px;
    font-weight: 600;
    color: #0a1a3b;
    cursor: pointer;
    text-align: left;
    position: relative;
    font-family: inherit;
    transition: color 0.15s;
}
.faq-question:hover { color: #1a3a7b; }

.faq-question::after {
    content: '+';
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 400;
    color: #0a1a3b;
    line-height: 1;
    transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
    content: '−';
}

.faq-answer {
    display: none;
    padding: 0 4px 16px;
    font-size: 14px;
    color: #333;
    line-height: 1.65;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer ul {
    margin: 8px 0 0 18px;
    padding: 0;
}
.faq-answer li {
    margin-bottom: 6px;
}