/* servicing-wp-plugin/assets/css/style.css */
.tms-submodel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 24px;
    padding: 20px 0;
}

.tms-badge-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-family: 'ConcielianBoldItalic', sans-serif;
    font-size: 28px;
    color: #0056a3;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.tms-badge-card:hover {
    transform: scale(1.08);
    color: #0073e6;
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

