.touchingpoints-page {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #f7f8fc;
    padding: 1rem;
    border-radius: 0.75rem;
}

.touchingpoints-card {
    border: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
}

.touchingpoints-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.touchingpoints-table {
    width: 100%;
}

.touchingpoints-col-category,
.touchingpoints-col-points,
.touchingpoints-col-optional {
    display: none;
}

@media (min-width: 640px) {
    .touchingpoints-col-category {
        display: block;
    }
}

@media (min-width: 1024px) {
    .touchingpoints-col-points,
    .touchingpoints-col-optional {
        display: block;
    }
}
