body {
    font-family: 'Inter', sans-serif;
    background-image: url('background.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.nav-links a.active {
    font-weight: bold;
    color: #a7f3d0;
}

/* Workshop phase pagination */
.phase-hidden { display: none; }
.phase-content.active { display: block; }
.phase-content { padding-left: 1rem; padding-right: 1rem; }

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.page-number, .page-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem 0.75rem;
    margin: 0 0.25rem;
    border-radius: 0.375rem;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    cursor: pointer;
    user-select: none;
}
.page-number.active {
    background-color: #16a34a;
    color: white;
    border-color: #16a34a;
    font-weight: 500;
}
.page-number:hover { background-color: #f3f4f6; }
.page-nav { background-color: white; color: #4b5563; }
.page-nav:hover { background-color: #f3f4f6; }
.page-nav.disabled {
    color: #d1d5db;
    cursor: not-allowed;
    background-color: #ffffff;
    border-color: #f3f4f6;
}
