
.cert-table {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #ddd;
    border-radius: var(--size-75);
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    max-width: 100%;
    width: 100%;
}

.cert-table th {
    background-color: var(--base-color) !important;
    color: var(--color-muted-grey);
    padding: 1rem;
    font-weight: 600;
    border: none;
    border-bottom: 1px solid #ddd;
}

.cert-table td {
    background-color: var(--base-color) !important;
    padding: 1rem;
    vertical-align: top;
    border-top: 1px solid #eee;
    color: var(--color-muted-grey);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cert-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .cert-table td, .cert-table th {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
}

.cert-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cert-list li {
    font-size: 1rem;
    color: var(--color-muted-grey);
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
    line-height: 1.4;
}

.cert-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 5px;
}

.cert-type-mint .cert-list li::before { background: #2C5F57; }
.cert-type-pink .cert-list li::before { background: #7A2733; }

.checkin-card {
    background-color: white !important;
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.checkin-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.checkin-card-mint {
    border-top: 3px solid var(--color-mint);
}

.checkin-card-pink {
    border-top: 3px solid var(--color-pink);
}

