/* ============================================================
   Game Instructions Download Block
   ============================================================ */

.game-instructions-download-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
}

/* ---- Shared button styles ---- */
.gid-download-btn {
    display: inline-flex;
    align-items: center;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    gap:10px;
}

/* ---- Primary button (main instructions PDF) ---- */
.gid-primary-download {
    display: flex;
}

.gid-primary-btn, .gid-secondary-btn {
    color: #000 !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 15px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 14px;
    font-family: var(--wp--preset--font-family--futura-pt, "Futura PT");
    background: var(--wp--preset--color--custom-taco-shell-yellow);
}

.gid-primary-btn:hover, .gid-secondary-btn:hover  {
    color: #fff !important;
    background: var(--wp--preset--color--custom-purr-pink) !important;
}

/* ---- Other files list ---- */
.gid-other-files {
    margin: 0;
}

.gid-file-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gid-file-item {
    margin: 0;
    padding: 0;
}

/* ---- Icons ---- */
.gid-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.gid-icon svg {
    width: 18px;
    height: 18px;
}

/* ---- Admin placeholder ---- */
.gid-placeholder {
    padding: 16px;
    background: #f9f9f9;
    border: 1px dashed #ccc;
    border-radius: 6px;
    color: #666;
    font-size: 0.9rem;
}
