.button {
    background: #111;
    color: #e10600;
    border: 2px solid #e10600;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.1s;
}

.button:hover {
    background: #e10600;
    color: white;
    transform: scale(1.05);
}

.button--open-all {
  margin-top: 1rem;
}


#page-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 400px;
}

#page-links li a {
    display: block;
    text-decoration: none;
    background: #e10600;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    transition: background 0.2s, transform 0.1s;
}

#page-links li a:hover {
    background: #b50500;
    transform: scale(1.03);
}

.link-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}