.mtt-grid {
    display: grid;
    grid-template-columns: repeat(var(--mtt-cols, 6), minmax(0, 1fr));
    gap: 0.25rem;
}

.mtt-grid .mtt-cell {
    min-height: 42px;
    font-size: 0.75rem;
    padding: 0.35rem 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.mtt-grid .mtt-cell.active-spot {
    outline: 3px solid #0d6efd;
    outline-offset: -1px;
}

.mtt-grid .mtt-cell.mtt-empty {
    visibility: visible;
    border-style: dashed !important;
    background: transparent;
    opacity: 0.4;
    color: transparent;
}

.mtt-area-title {
    max-width: 16rem;
    font-weight: 600;
    background: transparent;
}

.mtt-area-title::placeholder {
    font-weight: 400;
    opacity: 0.55;
}
