/* ===================================
   Layout & Wrapper
   =================================== */
.prebooking-wrap {
    background: var(--bg-gray-50);
    margin: -10px -20px;
    padding: 30px;
    min-height: 100vh;
}

.prebooking-wrap h1 {
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.prebooking-wrap h1::before {
    content: '';
    display: inline-block;
    width: 70px;
    height: 70px;
    background-image: url('../../../assets/images/logo-prebooking-event-schedule.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.prebooking-wrap h2 {
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 16px 0;
}

/* Page title actions */
.page-title-action {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.page-title-action:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

/* All links in plugin */
.prebooking-wrap a {
    text-decoration: none;
}

.prebooking-wrap a:hover {
    text-decoration: none;
}

/* Wrapper for the action/link above tables (replaces inline style) */
.prebooking-action-row {
    margin: 12px 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Ensure admin notices inside the plugin wrapper have proper spacing */
.prebooking-wrap .updated,
.prebooking-wrap .error {
    margin: 10px 0;
}