.info-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.info-grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
}

.info-grid-8 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 12px;
}

.info-item {
    background: #FEF3E2;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

.info-label {
    font-size: 0.8em;
    color: #888;
}

.info-value {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
}

.missing-list {
    text-align: left;
    margin-top: 10px;
    max-height: 150px;
    overflow-y: auto;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.not-point {
    opacity: 0.5;
}

.badge {
    display: inline-block;
    padding: 2px 8px;
    background: #eee;
    border-radius: 10px;
    font-size: 0.85em;
    margin: 2px;
}

.circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #b0b0b0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75em;
    color: #888;
    margin: 0 auto 10px auto;
}

#loading {
    text-align: center;
    padding: 20px;
}

/* Spinner */
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Mobile: stack info-grid vertically, ensure 30px touch targets */
@media (max-width: 450px) {
    .info-grid-2 {
        grid-template-columns: 1fr;
    }

    .btn,
    .link-btn {
        min-height: 30px;
    }
}